/*
Theme Name: Mysight
Author: Shuvo Gosh
Description: A custom WordPress theme for Booking and Registration.
Version: 1.0
Text Domain: mysightbooking
*/

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.popup-content {
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

#register-success-popup button {
    position: absolute;
    top: 3px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 20px;
}
#register-success-popup a {
    top: 20px;
    color: #040404;
    height: 60px;
    padding: 14px 50px;
    border-radius: 10px;
    border: 2px solid #101010;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
#register-success-popup a:hover{
    border: 2px solid #72bd2f;
    background: #72bd2f;
    color: #fff;
}

