/* forgot-password.css */

/* 
   Most styles come from auth-styles.css 
*/

.success-state {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 0.4s ease-out;
}

.success-icon-large {
    width: 80px;
    height: 80px;
    background-color: rgba(var(--color-success-rgb, 42, 157, 143), 0.1);
    color: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.success-icon-large svg {
    width: 40px;
    height: 40px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
