/* Auth Pages (Login & Register) */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height) - 200px);
    padding: var(--space-8) 0;
}

.auth-card {
    max-width: 440px;
    margin: 0 auto;
    padding: var(--space-8);
}

.auth-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.auth-header h1 {
    font-size: var(--text-2xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
}

.auth-form {
    margin-bottom: var(--space-6);
}

.auth-switch {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--text-sm);
}
.auth-switch a {
    color: var(--accent-cyan);
    font-weight: 600;
}
