/* Full screen overlay styles */
#login-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://tbc.xcoprojects.co.za/wp-content/uploads/2025/03/AdobeStock_510524549-scaled.jpeg') no-repeat center center;
    background-size: cover;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popup box styles */
#login-popup {
    background: #fff;
    padding: 30px;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Logo styling */
.login-popup-logo {
    text-align: center;
    margin-bottom: 20px;
}

/* Login form container */
.login-form-container {
    padding-top: 10px;
}

/* Style the login form inputs to match the previous design */
#loginform-popup input[type="text"],
#loginform-popup input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 0px;
}

#loginform-popup input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 16px;
}

#loginform-popup input[type="submit"]:hover {
    background: #005a87;
}

/* Reset password link styles */
.login-popup-links {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.lost-password-link,
.back-to-login-link {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
}

.lost-password-link:hover,
.back-to-login-link:hover {
    text-decoration: underline;
    color: #005a87;
}

/* Reset password form styles */
#reset-password-form p {
    margin-bottom: 15px;
}

#reset-password-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#reset-password-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 0px;
}

#reset-password-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 16px;
}

#reset-password-form input[type="submit"]:hover {
    background: #005a87;
}

#reset-password-form input[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#reset-message {
    margin-top: 10px;
}