/* ==========================================
   Forgot Password Page Specific Styles
   ========================================== */

.forgot-password-container {
    max-width: 480px;
    width: 100%;
}

/* Form layout */
.forgot-password-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Success State */
.success-state {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-state h2 {
    font-size: var(--font-size-h3, 1.5rem);
    font-weight: var(--font-weight-bold, 700);
    color: var(--text-primary);
    margin-bottom: 15px;
}

.success-state p {
    font-size: var(--font-size-body, 1rem);
    color: var(--text-secondary);
    line-height: var(--line-height-body, 1.5);
    margin-bottom: 10px;
}

.success-state .hint {
    font-size: var(--font-size-small, 0.875rem);
    color: var(--text-muted);
    margin-top: 20px;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 640px) {
    .forgot-password-container {
        padding: 0 10px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 1.875rem;
    }

    .success-state h2 {
        font-size: 1.25rem;
    }
}
