/* Auth pages — ambient background aligned with marketing hero / CTA textures */

.auth-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: var(--lp-bg-gradient);
  overflow-x: hidden;
}

.auth-shell::before,
.auth-shell::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.auth-shell::before {
  width: 460px;
  height: 460px;
  top: 8%;
  right: 6%;
  background: radial-gradient(circle, var(--lp-primary-light), transparent 70%);
}

.auth-shell::after {
  width: 380px;
  height: 380px;
  bottom: 8%;
  left: 6%;
  background: radial-gradient(circle, var(--lp-lavender), transparent 70%);
}

.auth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.auth-tex {
  position: absolute;
  pointer-events: none;
}

.auth-tex-dots-tl {
  left: 10%;
  top: 18%;
  width: min(540px, 108vw);
  height: auto;
}

.auth-tex-arcs-br {
  right: 10%;
  bottom: 12%;
  width: min(720px, 144vw);
  height: auto;
}

.auth-shell-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (max-width: 768px) {
  .auth-tex-dots-tl {
    opacity: 0.325;
  }

  .auth-tex-arcs-br {
    opacity: 0.36;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-shell::before,
  .auth-shell::after {
    filter: none;
    opacity: 0.35;
  }
}
