.auth-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--color-surface);
}

.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 1rem;
}

.auth-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.auth__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.auth__title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.25rem;
}

.auth__subtitle {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth__error {
    background: #FEF2F2;
    color: var(--color-error);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.813rem;
    margin-bottom: 1rem;
    border: 1px solid #FECACA;
}

.auth__submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.auth__footer {
    text-align: center;
    font-size: 0.813rem;
    color: var(--color-text-secondary);
    margin-top: 1.5rem;
}

.auth__footer a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.auth__footer a:hover {
    text-decoration: underline;
}
