:root {
  --zero-primary: #d578cc; /* primary brand */
  --zero-cta: #7f44a3;     /* strong CTA */
  --zero-deep: #380743;    /* anchor */
  --zero-success: #64a331;
  --zero-success-alt: #88ab31;
  --zero-link: #397ea7;
  --zero-teal: #1ab4b5;
  --zero-neutral: #746884;
  --zero-gray: #54544a;
  --zero-warn: #ab5d65;
  --zero-bg: #0f0016;
  --zero-card: #ffffff;
  --brand-accent-1: #1ab4b5;
  --brand-accent-2: #397ea7;
}

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 15% 12%, rgba(213, 120, 204, 0.22), transparent 45%),
              radial-gradient(circle at 78% -8%, rgba(122, 68, 163, 0.35), transparent 42%),
              linear-gradient(180deg, #1b0326 0%, #260638 45%, #380743 100%);
  color: var(--zero-gray);
  min-height: 100vh;
}

a,
.link-primary {
  color: var(--zero-link);
}

a:hover,
.link-primary:hover {
  color: var(--zero-teal);
}

.btn-primary {
  background-color: var(--zero-cta);
  border-color: var(--zero-cta);
  border-radius: 0.9rem;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--zero-deep);
  border-color: var(--zero-deep);
}

.btn-primary:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(213, 120, 204, 0.35);
}

.form-check-input:checked {
  background-color: var(--zero-primary);
  border-color: var(--zero-primary);
}

.navbar {
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(116, 104, 132, 0.2);
}

.card {
  border-radius: 1rem;
  border: 1px solid rgba(116, 104, 132, 0.18);
  background-color: var(--zero-card);
  box-shadow: 0 18px 32px rgba(56, 7, 67, 0.08);
}

.auth-landing {
  position: relative;
  overflow: visible;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.auth-landing__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(213, 120, 204, 0.45), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.auth-landing__glow--one {
  top: -80px;
  left: -60px;
}

.auth-landing__glow--two {
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(127, 68, 163, 0.6), transparent 70%);
}

.auth-landing__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-landing__nav {
  position: sticky;
  top: 1rem;
  z-index: 2;
}

.auth-nav__links .auth-nav__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
}

.auth-nav__links .auth-nav__link:hover,
.auth-nav__links .auth-nav__link:focus {
  color: #fff;
  text-decoration: underline;
}

.auth-nav__tag {
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  letter-spacing: 0.08em;
}

.btn-cta {
  background: linear-gradient(90deg, var(--zero-primary), var(--zero-cta));
  color: #fff;
  border: none;
  border-radius: 0.9rem;
  box-shadow: 0 0.8rem 1.8rem rgba(56, 7, 67, 0.28);
}

.btn-cta:hover,
.btn-cta:focus {
  color: #fff;
  background: linear-gradient(90deg, var(--zero-cta), var(--zero-deep));
}

.avatar-stack {
  display: inline-flex;
  align-items: center;
}

.avatar-stack .avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(56, 7, 67, 0.45);
  background: rgba(255, 255, 255, 0.95);
  color: var(--zero-deep);
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -12px;
}

.avatar-stack .avatar-count {
  background: rgba(127, 68, 163, 0.9);
  color: #fff;
}

.auth-points .auth-point {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  backdrop-filter: blur(12px);
  width: 100%;
}

.auth-points .col-sm-6 {
  display: flex;
}

.auth-lead-list {
  padding-left: 1.1rem;
}

.auth-proof__pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.85rem;
}

.auth-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.auth-trust__item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  backdrop-filter: blur(10px);
}

.auth-trust__icon {
  min-width: 70px;
  padding: 0.4rem 0.6rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.auth-point__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(213, 120, 204, 0.28), rgba(122, 68, 163, 0.32));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
}

.auth-point__icon i {
  line-height: 1;
}

.auth-card {
  border-radius: 1.5rem;
  border: none;
  background: var(--zero-card);
  box-shadow: 0 2.5rem 3.5rem rgba(15, 0, 22, 0.25);
  margin-bottom: 2rem;
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.auth-card .form-control {
  border-radius: 0.85rem;
  padding: 0.9rem 1.1rem;
  border-color: rgba(127, 68, 163, 0.25);
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-card .form-control:focus {
  border-color: var(--zero-accent);
  box-shadow: 0 0 0 0.15rem rgba(213, 120, 204, 0.25);
}

.auth-card__meta {
  border-top: 1px solid rgba(84, 84, 74, 0.15);
  padding-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.auth-divider {
  position: relative;
}

.auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(84, 84, 74, 0.2);
  transform: translateY(-50%);
}

.auth-divider span,
.auth-divider {
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  background: var(--zero-card);
}

.auth-password-group .password-toggle {
  border-color: rgba(127, 68, 163, 0.35);
  color: var(--zero-gray);
}

.auth-brand__logo {
  width: 120px;
  height: auto;
}

.tracking-wide {
  letter-spacing: 0.25em;
}

@media (max-width: 991.98px) {
  .auth-landing {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .avatar-stack .avatar {
    width: 38px;
    height: 38px;
  }

  .auth-card__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .auth-card__meta {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
