.elementor-1467 .elementor-element.elementor-element-3f6d3a2{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-27fd463 *//* --- Lost Password Page Specific Styles --- */

/* 1. The Card Container */
#custom-lostpassword-page.custom-auth-wrapper {
    max-width: 480px !important;   /* restrict width */
    margin: 60px auto !important;  /* center on page */
    padding: 40px !important;
    background: #ffffff;
    border: 1px solid #f0f0f0;     /* light border */
    border-radius: 10px;           /* rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* nice shadow */
    font-family: inherit;
    box-sizing: border-box;
}

#custom-lostpassword-page * { box-sizing: border-box; }

/* 2. Header Text */
#custom-lostpassword-page .form-header p {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}

/* 3. Inputs */
#custom-lostpassword-page .form-group { 
    margin-bottom: 25px !important; 
}

#custom-lostpassword-page label {
    display: block;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    color: #333; 
    font-size: 14px;
}

#custom-lostpassword-page input[type="text"] {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    background: #fcfcfc !important;
    color: #333 !important;
    font-size: 15px !important;
    outline: none !important;
    transition: all 0.3s ease;
    height: auto !important;
    box-shadow: none !important;
}

/* Brand Color Focus */
#custom-lostpassword-page input[type="text"]:focus {
    border-color: #2DA3CE !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(45, 163, 206, 0.1) !important;
}

/* 4. Button */
#custom-lostpassword-page .login-btn {
    width: 100% !important;
    padding: 16px !important;
    background-color: #2DA3CE !important; /* Brand Color */
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer;
    font-size: 16px !important;
    font-weight: 700 !important;
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: background 0.3s;
    margin-top: 10px;
}

#custom-lostpassword-page .login-btn:hover {
    background-color: #2489ae !important;
}
#custom-lostpassword-page .login-btn:disabled { 
    opacity: 0.7; 
    cursor: wait; 
}

/* 5. Back to Login Link */
#custom-lostpassword-page .register-section {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #666;
}
#custom-lostpassword-page .register-section a {
    color: #2DA3CE;
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
}
#custom-lostpassword-page .register-section a:hover {
    text-decoration: underline;
}

/* 6. Messages */
.login-status .success {
    text-align: center;
    padding: 20px;
    background: #f0fdf4;
    color: #27ae60;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
}
.login-status .error {
    text-align: center;
    padding: 15px;
    background: #fff5f5;
    color: #d63031;
    border-radius: 6px;
    border: 1px solid #fed7d7;
    margin-bottom: 20px;
}

/* Spinner */
.spinner {
    display: inline-block; width: 16px; height: 16px; 
    border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: #fff; 
    animation: spin 0.8s ease-in-out infinite; margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Mobile */
@media screen and (max-width: 500px) {
    #custom-lostpassword-page.custom-auth-wrapper {
        margin: 20px auto !important;
        padding: 25px !important;
        box-shadow: none;
        border: none;
        max-width: 100% !important;
    }
}/* End custom CSS */