/* Auth page — split layout */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 0;
  flex: 1;
  width: 100%;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

/* ── Left panel ── */
.auth-panel-left {
  position: relative;
  background: #080808;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 0.5px solid rgba(192,192,248,0.08);
}

.auth-panel-left canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.auth-panel-left__brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.auth-panel-left__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* ── Right panel ── */
.auth-panel-right {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.auth-panel-right section {
  width: 100%;
  max-width: 400px;
}

.auth-card {
  background: transparent;
  border: none;
  padding: 0;
  width: 100%;
}

.auth-card__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.auth-card__subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  min-height: 20px;
}

/* ── Responsive — stack on mobile ── */
@media (max-width: 768px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }
  .auth-panel-left {
    display: none;
  }
  .auth-panel-right {
    padding: 32px 24px;
  }
}
