.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-sidebar) 100%);
}

.auth-card {
    background: var(--bg-sidebar);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px var(--shadow);
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo h1 {
    font-size: 28px;
    color: var(--primary);
    margin-top: 10px;
}

.auth-logo .logo-icon {
    font-size: 64px;
}

.auth-form .field {
    margin-bottom: 16px;
}

.auth-form .field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.auth-form .field input {
    width: 100%;
}

.auth-form button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 8px;
}

.auth-error {
    background: rgba(231, 76, 60, 0.15);
    color: var(--danger);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 13px;
    display: none;
}

.auth-error.visible { display: block; }

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}
