.forgot-password-card {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 3px 19px 6px rgba(0, 0, 0, 0.04);
    border-radius: 7px;
    padding: 33px;
}

/* Form container */
.forgotPasswordForm {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

/* Form title */
.form-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #050505;
    margin: 0 0 7px 0;
    text-align: center;
}

/* Email label */
.email-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #1a1a1a;
    margin-bottom: 3px;
}

/* Error message */
.error-message {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #d32f2f;
    margin: 0;
    text-align: center;
}

/* Success message */
.success-message {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #2e7d32;
    margin: 0;
    text-align: center;
}

/* Back to Login link */
.back-to-login-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #666666;
    text-decoration: none;
    transition: color 0.2s;
    text-align: center;
    display: block;
    margin-top: 7px;
}

.back-to-login-link:hover {
    color: #1a1a1a;
    text-decoration: underline;
}
