/* Forgot-password overrides — base styles in auth.css */

.auth-body p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.auth-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.auth-steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 10px;
    font-size: 0.8125rem;
    color: #374151;
    line-height: 1.5;
}

.auth-steps li .step-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.0625rem;
}

.auth-steps li .step-icon i {
    font-size: 0.75rem;
    color: #6366f1;
}

.support-block {
    padding: 0.875rem 1rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    font-size: 0.8125rem;
    color: #0369a1;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.support-block i {
    color: #0ea5e9;
    flex-shrink: 0;
}

.support-block a {
    color: #0369a1;
    font-weight: 600;
    text-decoration: none;
}

.support-block a:hover {
    text-decoration: underline;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    border: none;
    padding: 0.6875rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-back:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
    color: #fff;
}

.btn-back:active {
    transform: translateY(0);
}
