/* Sessão Gooner Auth — /entrar/ dark gooner skin */
:root {
  --sg-bg: #0a0908;
  --sg-bg2: #14110f;
  --sg-card: #161210;
  --sg-ink: #f5efe6;
  --sg-muted: #9a8f84;
  --sg-dim: #6e655c;
  --sg-gold: #c4a574;
  --sg-gold-soft: rgba(196, 165, 116, 0.22);
  --sg-cream: #e8d5b5;
  --sg-hot: #c47a84;
  --sg-red: #ff2a3c;
  --sg-radius: 14px;
}

html,
body.sg-auth-skin {
  background: var(--sg-bg) !important;
  color: var(--sg-ink);
  margin: 0;
  min-height: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
}

/* Hide theme chrome on auth page */
body.sg-auth-skin .site-header,
body.sg-auth-skin .site-footer,
body.sg-auth-skin #wpadminbar {
  /* keep admin bar if present for admins; guests won't have it */
}

.sg-auth {
  min-height: 100vh;
  background:
    radial-gradient(1000px 420px at 50% -8%, rgba(196, 122, 132, 0.14), transparent 58%),
    radial-gradient(700px 360px at 95% 15%, rgba(196, 165, 116, 0.07), transparent 50%),
    var(--sg-bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem 3rem;
  box-sizing: border-box;
}

.sg-auth__wrap {
  width: min(100%, 420px);
}

.sg-auth__hero {
  text-align: center;
  margin: 0 0 1.35rem;
}

.sg-auth__badge {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--sg-red);
  border-radius: 999px;
}

.sg-auth__brand {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sg-gold);
}

.sg-auth__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.85rem, 7vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--sg-cream);
}

.sg-auth__sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--sg-muted);
}

.sg-auth__card {
  background: var(--sg-card);
  border: 1px solid rgba(196, 165, 116, 0.18);
  border-radius: var(--sg-radius);
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.sg-auth__alert {
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.sg-auth__alert--error {
  background: rgba(255, 42, 60, 0.12);
  border: 1px solid rgba(255, 42, 60, 0.35);
  color: #ffb4bb;
}

.sg-auth__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0 0 1.1rem;
  padding: 0.3rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
}

.sg-auth__tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--sg-muted);
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 0.5rem;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.sg-auth__tab.is-active {
  background: var(--sg-gold-soft);
  color: var(--sg-cream);
  box-shadow: inset 0 0 0 1px rgba(196, 165, 116, 0.35);
}

.sg-auth__panel {
  display: none;
}

.sg-auth__panel.is-active {
  display: block;
}

.sg-auth__label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--sg-muted);
}

.sg-auth__input {
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 0.95rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(196, 165, 116, 0.22);
  background: #0e0c0a;
  color: var(--sg-ink);
  font: inherit;
  font-size: 1rem;
}

.sg-auth__input:focus {
  outline: none;
  border-color: var(--sg-gold);
  box-shadow: 0 0 0 3px var(--sg-gold-soft);
}

.sg-auth__check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--sg-muted);
  cursor: pointer;
  user-select: none;
}

.sg-auth__check input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--sg-gold);
}

.sg-auth__btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 11px;
  border: 0;
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}

.sg-auth__btn--primary {
  background: linear-gradient(180deg, #d4b68a, var(--sg-gold));
  color: #14110f;
}

.sg-auth__btn--primary:hover {
  filter: brightness(1.06);
}

.sg-auth__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.15rem 0 0.95rem;
  color: var(--sg-dim);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sg-auth__divider::before,
.sg-auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(196, 165, 116, 0.18);
}

.sg-auth__social {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sg-auth__social .nsl-container,
.sg-auth__social .nsl-container-buttons {
  width: 100% !important;
  margin: 0 !important;
}

.sg-auth__social .nsl-button,
.sg-auth__social a.nsl-button,
.sg-auth__google {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  margin: 0 !important;
  padding: 0.75rem 1rem !important;
  border-radius: 11px !important;
  border: 1px solid rgba(196, 165, 116, 0.28) !important;
  background: #1a1613 !important;
  color: var(--sg-cream) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.sg-auth__social .nsl-button:hover,
.sg-auth__google:hover {
  border-color: var(--sg-gold) !important;
  background: #221c18 !important;
}

.sg-auth__foot {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: 0.88rem;
}

.sg-auth__foot a {
  color: var(--sg-gold);
  text-decoration: none;
}

.sg-auth__foot a:hover {
  text-decoration: underline;
}

/* Age gate still sits on top when cookie missing — fine */
