.auth-page .site-main {
  padding-top: 32px;
  padding-bottom: 64px;
  flex: 1;
}

.auth-wrap {
  width: min(440px, 100%);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.auth-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 28px 24px 24px;
  overflow: hidden;
}

.auth-card .play-glow {
  position: absolute;
  inset: auto auto -40% -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 62, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.auth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--muted);
}

.auth-card h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-style: italic;
  text-transform: uppercase;
}

.auth-lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-alert {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 62, 0, 0.45);
  background: rgba(255, 62, 0, 0.1);
  font-size: 0.88rem;
  font-weight: 600;
}

.auth-alert.ok {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.1);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.auth-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--muted);
}

.auth-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
}

.auth-field input:focus {
  outline: none;
  border-color: var(--accent);
}

.auth-field .hint {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--muted);
}

.auth-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.auth-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.auth-switch {
  margin-top: 18px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.auth-switch a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-profile-meta {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.auth-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #000;
  font-size: 0.85rem;
}

.auth-meta-row span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 800;
}

.auth-meta-row strong {
  font-weight: 700;
}
