/* Forgot Password page enhancements */
.forgot-card,
.auth-card {
    background: linear-gradient(180deg, rgba(12, 16, 28, 0.85), rgba(8, 12, 22, 0.85));
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 8px 26px rgba(0,0,0,0.35),
        0 0 0 1px rgba(128, 90, 213, 0.15),           /* purple edge */
        0 0 24px rgba(128, 90, 213, 0.20);            /* purple glow */
    color: #eaf0ff;
}
.forgot-card h2,
.auth-card h2 {
    color: #eaf0ff;
    font-weight: 600;
    margin-bottom: 8px;
}
.forgot-card .form-label,
.auth-card .form-label {
    color: #b8c2d6;
    margin-bottom: 6px;
}
/* Dark input style */
.form-control.dark-input {
    background: #0e1320;
    color: #fff;
    border: 1px solid #27324a;
    border-radius: 10px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.form-control.dark-input::placeholder { color: #8da0c2; }
.form-control.dark-input:hover {
    border-color: #6d28d9;
    box-shadow: 0 0 0 2px rgba(109,40,217,.20);
}
.form-control.dark-input:focus {
    border-color: #7c3aed;
    background: #0b1020;
    box-shadow: 0 0 0 2px rgba(124,58,237,.25), 0 0 18px rgba(124,58,237,.15);
}
/* Purple primary button */
.btn-purple,
.at-btn-primary {
    background: #7c3aed;           /* purple */
    border-color: #7c3aed;
    color: #fff;
}
.btn-purple:hover,
.at-btn-primary:hover {
    background: #6d28d9;
    border-color: #6d28d9;
    color: #fff;
}
/* Success message block */
.forgot-success {
    text-align: center;
    padding: 32px 16px;
    color: #eaf0ff;
}
.forgot-success i {
    color: #7c3aed;
    font-size: 64px;
    margin-bottom: 14px;
}
.forgot-success .subtle { color: #a6b3cb; }
/* Logo helper */
.auth-card__logo {
    display: block;
    margin: 0 auto 10px auto;
    height: 42px;
}
/* Center helper */
.btn-row { text-align: center; }
/* Centered button without forcing full width */
.btn-center { display: inline-block; }
/* More compact button size */
.btn-slim { padding: 8px 16px; font-size: 14px; line-height: 1.2; }