.auth-body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f7fb;
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 28px 24px;
  box-sizing: border-box;
}

.auth-card h1 {
  margin: 0 0 8px;
  font-size: 24px;
}

.auth-card .muted,
.auth-card p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.45;
}

.auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #111827;
  background: #111827;
  color: #fff;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.auth-button:hover {
  background: #374151;
}

.auth-button.secondary {
  background: #fff;
  color: #111827;
  border-color: #d1d5db;
}

.auth-button:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.auth-gate {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.auth-gate[hidden],
#app-shell[hidden] {
  display: none !important;
}

.auth-user-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 12px;
  font-size: 14px;
}

.auth-user-bar .auth-identity {
  color: #4b5563;
}

.token-input,
label[for="token"],
label[for="dashboardToken"],
label[for="reportingToken"],
#token,
#dashboardToken,
#reportingToken {
  display: none !important;
}
