/* Login page. Self-contained page-specific rules — reuses only :root vars,
   base resets, .eyebrow, and .btn from styles.css (brief.css/job.css aren't
   loaded here since this page must render before any auth cookie exists). */

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 32px;
}

.login-brand { margin-bottom: 18px; }

.login-card h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.login-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 22px;
}

.field-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 6px;
  margin-top: 14px;
}

.text-input {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  width: 100%;
  transition: border-color 150ms var(--ease), background 150ms var(--ease);
}

.text-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.login-submit {
  width: 100%;
  justify-content: center;
  margin-top: 22px;
  padding: 11px 18px;
}

.hint {
  font-size: 12.5px;
  color: var(--danger);
  min-height: 16px;
  margin-top: 10px;
}

.login-footer {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 18px;
}
