/* Sign-in / sign-up shell — matches the site's dark science-lab aesthetic. */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(42, 165, 201, 0.10), transparent 60%),
    radial-gradient(900px 700px at 80% 90%, rgba(160, 91, 201, 0.12), transparent 60%),
    var(--bg);
}
.auth-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.auth-logo {
  display: block;
}
.auth-logo img {
  height: 34px;
  width: auto;
}

/* Header sign-in slot (home page) */
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }
.nav-cta-wrap .cl-userButtonBox { display: flex; }

/* Checkout header right side */
.co-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.co-signed-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(94, 106, 201, 0.15);
  color: #a6b3ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
