/* Login page — overrides + auth-specific bits.
   Auth shell layout (.auth, .auth__panel, .auth__brand, .auth__form) lives in theme.css. */

.auth__bullets {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9375rem;
}
.auth__bullet-icon {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.auth__sub-link {
  text-align: center;
  margin-top: 14px;
  font-size: 0.875rem;
}
.auth__sub-link--muted { color: var(--text-muted); }
.auth__sub-link a { font-weight: 600; }

/* Wider form for registration */
.auth__form--wide { max-width: 520px; }
.auth__section {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 14px 0 10px;
}
.auth__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 560px) { .auth__row { grid-template-columns: 1fr; } }
