/* ── صفحات احراز هویت ───────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff 0%, #f0fdf4 100%);
    padding: 1.5rem;
}
.auth-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
}
.auth-logo {
    text-align: center;
    margin-bottom: 1.75rem;
}
.auth-logo svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin: 0 auto .75rem;
    display: block;
}
.auth-logo h1 {
    font-size: var(--font-size-xl);
    color: var(--color-text);
    margin-bottom: .25rem;
}
.auth-logo p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
}
.auth-divider {
    text-align: center;
    position: relative;
    margin: 1.25rem 0;
    color: var(--color-text-light);
    font-size: var(--font-size-xs);
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--color-border);
}
.auth-divider span {
    position: relative;
    background: var(--color-surface);
    padding: 0 .75rem;
}
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}
