/* Auth page wrapper: works for both /login and /register */
.auth-page-wrapper {
    background: var(--z6k-surface-0, #f6f7fb);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

/* Card styling */
.auth-card,
.block-login,
.block-register {
    width: 100%;
    max-width: 420px;
    background: var(--z6k-surface-1, #ffffff);
    border: 1px solid var(--z6k-border, #e7e9f0);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

/* Make it mobile-friendly */
.auth-card h1,
.auth-card h2 {
    margin: 0 0 12px 0;
    font-size: 20px;
}

.auth-field {
    margin-top: 12px;
}

.auth-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--z6k-text-muted, #5b6270);
}

.auth-field input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--z6k-border, #e7e9f0);
    outline: none;
}

.auth-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

.auth-actions button {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    background: var(--z6k-accent, #2f6fed);
    color: white;
    font-weight: 600;
}

.auth-error {
    margin-top: 12px;
    font-size: 13px;
    color: #b42318;
}