/**
 * ittszabad shared brand tokens — admin + docs
 * Keep in sync with docs/.vitepress/theme/brand-tokens.css
 */
:root {
  --brand-charcoal: #222222;
  --brand-mint: #9ddac6;
  --brand-navy: #3451b2;
  --brand-navy-hover: #3a5ccc;
  --brand-navy-soft: #eef2ff;
  --brand-navy-muted: #2b3f8f;
  --brand-danger: #c62828;
  --brand-danger-hover: #b71c1c;
  --brand-surface: #ffffff;
  --brand-surface-muted: #f6f6f7;
  --brand-border: #e5e7eb;
  --brand-text: #1f2937;
  --brand-text-muted: #6b7280;
  --brand-login-gradient: linear-gradient(135deg, var(--brand-charcoal) 0%, var(--brand-mint) 100%);
  --brand-radius: 0.5rem;
  --brand-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --brand-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Login page shared surface */
.brand-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--brand-login-gradient);
}

.brand-login-checking {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  background: var(--brand-login-gradient);
}

.brand-login-card {
  background: var(--brand-surface);
  border-radius: 0.75rem;
  box-shadow: var(--brand-shadow-lg);
  padding: 2rem;
  width: 100%;
  max-width: 28rem;
}

.brand-login-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand-charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.brand-login-subtitle {
  color: var(--brand-text-muted);
  font-size: 0.95rem;
}

.brand-login-accent {
  display: block;
  width: 2.5rem;
  height: 3px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: var(--brand-mint);
}
