/* Auth — sem overlays cinematográficos */

[hidden] {
  display: none !important;
}

.page-auth {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #060b14;
}

.auth-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  border-right: 1px solid var(--glass-border);
  overflow: hidden;
}

.auth-visual-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(52, 217, 200, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 45% at 70% 60%, rgba(139, 124, 255, 0.14), transparent 50%);
  pointer-events: none;
}

.auth-visual-copy {
  position: relative;
  z-index: 1;
  max-width: 22rem;
}

.auth-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.auth-visual-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

.auth-visual-copy p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.auth-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.auth-mobile-banner {
  display: none;
  width: min(400px, 92vw);
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(52, 217, 200, 0.08);
  border: 1px solid var(--glass-border);
}

.auth-mobile-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.auth-mobile-banner strong {
  color: var(--accent);
}

.auth-card {
  width: min(400px, 92vw);
  padding: 2.25rem;
  background: rgba(10, 16, 28, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.auth-card .logo {
  display: block;
  text-align: center;
  margin-bottom: 1.75rem;
  font-size: 1.35rem;
}

.auth-card h1 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
}

.auth-card .auth-sub {
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
  margin: 0 0 1.75rem;
}

.auth-btn {
  width: 100%;
  margin-top: 0.65rem;
  justify-content: center;
}

.auth-btn-google {
  background: #fff;
  color: #1f1f1f;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.auth-btn-google:hover {
  background: #f5f5f5;
  color: #000;
}

.auth-btn-apple {
  background: #0a0a0a;
  color: #fff;
  border: 1px solid var(--glass-border);
}

.auth-btn-apple:hover {
  background: #151515;
  color: #fff;
}

.auth-error {
  color: var(--danger);
  font-size: 0.88rem;
  margin-top: 1rem;
  text-align: center;
  padding: 0.65rem;
  background: rgba(255, 107, 138, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 138, 0.2);
}

.auth-back {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.auth-back:hover {
  color: var(--accent);
}

@media (max-width: 860px) {
  .page-auth {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    display: none;
  }

  .auth-mobile-banner {
    display: block;
  }

  .auth-panel {
    min-height: 100dvh;
    justify-content: flex-start;
    padding-top: 2.5rem;
  }
}
