/* Auth pages – Login / Register */

.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-0);
}

.auth-header {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    width: 100%;
    max-width: 380px;
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 2rem;
}

.auth-card h1 {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.auth-card .subtitle {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 1.75rem;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--text);
    text-decoration: underline;
}

#auth-message {
    display: none;
}
