/**
 * Forgot Password pages specific styles
 * Additional styles for forgot password flow
 */

/* Info box for OTP page */
.auth-info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.auth-info-box p {
    margin: 0;
    color: #1e40af;
    font-size: 0.85rem;
}

.auth-info-box strong {
    color: #1e40af;
    font-weight: 600;
}

/* Resend section */
.auth-resend-section {
    margin-top: 1rem;
    text-align: center;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.auth-resend-btn {
    background: none;
    border: none;
    color: var(--brand) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.auth-resend-btn:hover:not(:disabled) {
    color: var(--brand-hover) !important;
    text-decoration: underline;
}

.auth-resend-btn:disabled {
    color: var(--muted) !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.auth-link-btn {
    background: none;
    border: none;
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.auth-link-btn:hover:not(:disabled) {
    color: var(--brand-hover);
    text-decoration: underline;
}

.auth-link-btn:disabled {
    color: var(--muted);
    cursor: not-allowed;
    opacity: 0.6;
}

