/* Auth pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    padding: 2rem;
}
.auth-container {
    width: 100%;
    max-width: 420px;
}
.auth-card {
    padding: 2.5rem;
    border-radius: var(--radius);
}
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}
.auth-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.auth-header h1 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}
