/* ─────────────────────────────────────────
   AUTHENTICATION — Coming Soon page
   Uses fe-auth prefix (no collision with loyalty)
   ───────────────────────────────────────── */

.fe-auth {
  background: var(--fe-cream-dark);
  width: 100%;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  overflow: hidden;
}

.fe-auth__inner {
  max-width: 960px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

/* Left column — symbol */
.fe-auth__symbol-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fe-auth__symbol {
  width: 260px;
  height: auto;
}

.fe-auth__symbol svg {
  width: 100%;
  height: auto;
  display: block;
  background: transparent !important;
}

/* Vertical divider */
.fe-auth__divider {
  width: 1px;
  align-self: stretch;
  margin: 10% 0;
  background: var(--fe-border);
}

/* Right column — text */
.fe-auth__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px 0 60px;
  min-width: 0;
}

.fe-auth__eyebrow {
  font-family: var(--fe-font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fe-warm-gray);
  margin: 0 0 24px;
}

.fe-auth__title {
  font-family: var(--fe-font-display);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--fe-black);
  margin: 0 0 28px;
}

.fe-auth__body {
  font-family: var(--fe-font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--fe-warm-gray);
  margin: 0 0 24px;
}

.fe-auth__badge {
  display: inline-block;
  font-family: var(--fe-font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-black);
  border: 1px solid var(--fe-black);
  padding: 12px 32px;
  align-self: flex-start;
  margin-top: 16px;
}

/* Tablet */
@media (max-width: 1024px) {
  .fe-auth__symbol {
    width: 200px;
  }

  .fe-auth__text-col {
    padding: 0 20px 0 48px;
  }

  .fe-auth__title {
    font-size: 2.8rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .fe-auth {
    min-height: auto;
    padding: 80px 5% 0;
  }

  .fe-auth__inner {
    grid-template-columns: 1fr;
  }

  .fe-auth__divider {
    width: 100%;
    height: 1px;
    margin: 0;
    align-self: auto;
  }

  .fe-auth__symbol-col {
    padding-bottom: 40px;
  }

  .fe-auth__symbol {
    width: 160px;
  }

  .fe-auth__text-col {
    padding: 40px 0 48px;
  }

  .fe-auth__title {
    font-size: 2.5rem;
  }
}
