/* =========================================================
   AUTH UI | Ruta de dos
   Pantallas: login, registro, recuperar contraseña
   ========================================================= */

.auth-ui {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(216, 167, 177, 0.24), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(155, 190, 200, 0.24), transparent 32rem),
    linear-gradient(180deg, #f6efe4 0%, #f3e7d7 100%);
}

/* Header específico auth */
.auth-ui .auth-header {
  background: rgba(246, 239, 228, 0.88);
  backdrop-filter: blur(0.75rem);
  border-bottom: 0.0625rem solid rgba(91, 64, 50, 0.08);
}

.auth-ui .auth-header-content {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.auth-ui .auth-header .logo {
  order: 0;
}

.auth-ui .logo img {
  width: auto;
}

.auth-ui .auth-header-link {
  order: 1;
  margin-left: auto;
  color: var(--color-primary);
  font-size: 0.92rem;
  opacity: 0.78;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .auth-ui .auth-header-link:hover {
    opacity: 1;
    transform: translateX(-0.125rem);
  }
}

/* Página */
.auth-ui .auth-page {
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
}

.auth-ui .auth-wrapper {
  width: 100%;
  display: grid;
  align-items: start;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

/* Layouts por pantalla */
.auth-login .auth-wrapper {
  max-width: 68rem;
  grid-template-columns: minmax(20rem, 32rem) minmax(17rem, 27rem);
}

.auth-register .auth-wrapper {
  max-width: 72rem;
  grid-template-columns: minmax(22rem, 38rem) minmax(17rem, 25rem);
}

.auth-reset .auth-wrapper {
  max-width: 68rem;
  grid-template-columns: minmax(20rem, 34rem) minmax(17rem, 26rem);
}
.auth-register .auth-visual {
  padding-top: 1.5rem;
}

/* Card principal */
.auth-ui .auth-card {
  order: 1;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(1rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.72);
  border-radius: 1.6rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow:
    0 1.75rem 5rem rgba(91, 64, 50, 0.12),
    inset 0 0.0625rem 0 rgba(255, 255, 255, 0.72);
}

.auth-ui .auth-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.32rem;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
}

.auth-login .auth-card {
  max-width: 32rem;
}

.auth-register .auth-card {
  max-width: 38rem;
}

.auth-reset .auth-card {
  max-width: 34rem;
}

/* Cabecera del formulario */
.auth-ui .auth-head {
  margin-bottom: 1rem;
}

.auth-ui .auth-kicker,
.auth-ui .auth-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.65rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999rem;
  background: rgba(216, 167, 177, 0.20);
  border: 0.0625rem solid rgba(216, 167, 177, 0.36);
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 600;
}

.auth-ui .auth-head h1,
.auth-ui .auth-head h2 {
  font-family: var(--font-title);
  color: var(--color-primary);
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  line-height: 1.08;
  margin-bottom: 0.35rem;
}

.auth-ui .auth-subtitle {
  color: rgba(58, 47, 40, 0.68);
  font-size: 0.95rem;
}

/* Información secundaria */
.auth-ui .auth-visual {
  order: 2;
  padding: 0;
}

.auth-ui .auth-visual h1,
.auth-ui .auth-visual h2 {
  max-width: 28rem;
  font-family: var(--font-title);
  color: var(--color-primary);
  font-size: clamp(1.75rem, 3.3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.auth-ui .auth-visual-text {
  max-width: 25rem;
  color: rgba(58, 47, 40, 0.78);
  font-size: 0.98rem;
}

/* Beneficios */
.auth-ui .auth-benefits {
  display: grid;
  gap: 0.65rem;
  max-width: 27rem;
  margin-top: 1.25rem;
}

.auth-ui .auth-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.48);
  border: 0.0625rem solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 0.75rem 2rem rgba(91, 64, 50, 0.045);
}

.auth-ui .auth-benefit span {
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(155, 190, 200, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.auth-ui .auth-benefit p {
  margin: 0;
  color: rgba(58, 47, 40, 0.82);
  font-size: 0.9rem;
}

/* Tarjeta puntos */
.auth-ui .auth-points-card {
  max-width: 27rem;
  margin-top: 0.85rem;
  padding: 0.9rem;
  border-radius: 1.05rem;
  background: rgba(91, 64, 50, 0.92);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 1.25rem 3.125rem rgba(91, 64, 50, 0.18);
}

.auth-ui .auth-points-label {
  display: block;
  margin-bottom: 0.16rem;
  font-size: 0.78rem;
  opacity: 0.76;
}

.auth-ui .auth-points-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
}

.auth-ui .auth-points-pill {
  flex: 0 0 auto;
  padding: 0.35rem 0.65rem;
  border-radius: 999rem;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Campos */
.auth-ui .auth-field {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.auth-register .auth-field {
  margin-top: 0.8rem;
}

.auth-ui .auth-field label,
.auth-ui .auth-label-row label {
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 600;
}

.auth-ui .auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.auth-ui .auth-label-row a {
  color: var(--color-primary);
  font-size: 0.84rem;
  opacity: 0.72;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.auth-ui input {
  width: 100%;
  min-height: 3rem;
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  border: 0.0625rem solid rgba(91, 64, 50, 0.13);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.auth-ui input::placeholder {
  color: rgba(58, 47, 40, 0.42);
}

.auth-ui input:focus {
  border-color: rgba(216, 167, 177, 0.95);
  box-shadow:
    0 0 0 0.25rem rgba(216, 167, 177, 0.18),
    0 0.875rem 1.875rem rgba(91, 64, 50, 0.07);
}

.auth-ui input.input-error {
  border-color: #b54747;
  box-shadow: 0 0 0 0.25rem rgba(181, 71, 71, 0.12);
}

/* Evita el azul fuerte del autofill en Chrome */
.auth-ui input:-webkit-autofill,
.auth-ui input:-webkit-autofill:hover,
.auth-ui input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text);
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.94) inset;
  transition: background-color 9999s ease-in-out 0s;
}

/* Password */
.auth-ui .auth-password-wrap {
  position: relative;
}

.auth-ui .auth-password-wrap input {
  padding-right: 3.1rem;
}

.auth-ui .auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 0.55rem;
  transform: translateY(-50%);
  width: 2.375rem;
  height: 2.375rem;
  border: 0;
  border-radius: 0.75rem;
  background: rgba(246, 239, 228, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .auth-ui .auth-password-toggle:hover {
    background: rgba(216, 167, 177, 0.22);
  }
}

/* Botones */
.auth-ui .auth-submit,
.auth-ui .auth-google {
  width: 100%;
  min-height: 3.125rem;
  border-radius: 0.95rem;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  font-weight: 600;
}

.auth-ui .auth-submit {
  border: 0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  cursor: pointer;
}

.auth-ui .auth-google {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.72);
}

.auth-ui .auth-google-icon {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 0.375rem 1.125rem rgba(91, 64, 50, 0.08);
}

.auth-ui .btn-loading,
.auth-ui .auth-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

/* Divisor */
.auth-ui .auth-divider {
  position: relative;
  margin: 1rem 0;
  text-align: center;
}

.auth-ui .auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: rgba(91, 64, 50, 0.12);
}

.auth-ui .auth-divider span {
  position: relative;
  z-index: 1;
  padding: 0 0.8rem;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(58, 47, 40, 0.54);
  font-size: 0.82rem;
}

/* Mensajes */
.auth-ui .auth-message {
  margin-bottom: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.auth-ui .auth-message[hidden] {
  display: none;
}

.auth-ui .auth-message--error {
  color: #9f3f3f;
  background: rgba(181, 71, 71, 0.10);
  border: 0.0625rem solid rgba(181, 71, 71, 0.20);
}

.auth-ui .auth-message--success {
  color: #2f7a4b;
  background: rgba(47, 122, 75, 0.10);
  border: 0.0625rem solid rgba(47, 122, 75, 0.20);
}

/* Links finales */
.auth-ui .auth-links {
  margin-top: 1rem;
  text-align: center;
  color: rgba(58, 47, 40, 0.72);
  font-size: 0.92rem;
}

.auth-ui .auth-links p {
  margin: 0;
}

.auth-ui .auth-links a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

/* Registro */
.auth-ui .auth-form-grid {
  display: grid;
  gap: 0.8rem;
}

@media (min-width: 38.75rem) {
  .auth-ui .auth-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.auth-ui .auth-mini-note {
  display: block;
  margin-top: 0.25rem;
  color: rgba(58, 47, 40, 0.58);
  font-size: 0.82rem;
  line-height: 1.4;
}

.auth-ui .auth-strength {
  width: 100%;
  height: 0.4375rem;
  margin-top: 0.65rem;
  border-radius: 999rem;
  background: rgba(91, 64, 50, 0.10);
  overflow: hidden;
}

.auth-ui .auth-strength span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999rem;
  background: rgba(181, 71, 71, 0.70);
  transition: width 0.25s ease, background 0.25s ease;
}

.auth-ui .auth-strength[data-strength="weak"] span {
  width: 33%;
  background: rgba(181, 71, 71, 0.75);
}

.auth-ui .auth-strength[data-strength="medium"] span {
  width: 66%;
  background: rgba(216, 167, 177, 0.95);
}

.auth-ui .auth-strength[data-strength="strong"] span {
  width: 100%;
  background: rgba(47, 122, 75, 0.75);
}

.auth-ui .auth-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(155, 190, 200, 0.10);
  border: 0.0625rem solid rgba(155, 190, 200, 0.20);
  color: rgba(58, 47, 40, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
}

.auth-ui .auth-check input {
  width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0.12rem;
  accent-color: var(--color-secondary);
  flex: 0 0 auto;
  cursor: pointer;
}

.auth-ui .auth-check a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.auth-ui .auth-check.input-error {
  border-color: rgba(181, 71, 71, 0.35);
  background: rgba(181, 71, 71, 0.10);
}

.auth-ui .auth-security-note {
  margin: 0.8rem 0 0;
  padding-top: 0.8rem;
  border-top: 0.0625rem solid rgba(91, 64, 50, 0.10);
  color: rgba(58, 47, 40, 0.56);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

/* Recuperación */
.auth-ui .auth-step[hidden] {
  display: none;
}

.auth-ui .auth-reset-flow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  padding: 0.8rem;
  border-radius: 1rem;
  background: rgba(246, 239, 228, 0.48);
  border: 0.0625rem solid rgba(91, 64, 50, 0.08);
}

.auth-ui .auth-reset-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(58, 47, 40, 0.58);
  transition: var(--transition);
}

.auth-ui .auth-reset-step span {
  width: 1.875rem;
  height: 1.875rem;
  flex: 0 0 auto;
  border-radius: 999rem;
  background: rgba(91, 64, 50, 0.08);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.auth-ui .auth-reset-step p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
}

.auth-ui .auth-reset-step.is-active {
  color: var(--color-primary);
}

.auth-ui .auth-reset-step.is-active span {
  background: rgba(216, 167, 177, 0.28);
  border: 0.0625rem solid rgba(216, 167, 177, 0.42);
}

.auth-ui .auth-reset-step.is-done span {
  background: rgba(47, 122, 75, 0.12);
  color: #2f7a4b;
}

.auth-ui .auth-reset-line {
  width: 100%;
  height: 0.0625rem;
  background: rgba(91, 64, 50, 0.14);
}

.auth-ui .auth-code-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(155, 190, 200, 0.10);
  border: 0.0625rem solid rgba(155, 190, 200, 0.20);
}

.auth-ui .auth-code-info span {
  flex: 0 0 auto;
}

.auth-ui .auth-code-info p {
  margin: 0;
  color: rgba(58, 47, 40, 0.70);
  font-size: 0.88rem;
  line-height: 1.45;
}

.auth-ui .auth-code-input {
  text-align: center;
  letter-spacing: 0.35em;
  font-size: 1.08rem;
  font-weight: 700;
}

.auth-ui .auth-reset-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.auth-ui .auth-reset-actions .btn-outline {
  width: 100%;
  min-height: 3rem;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-ui .auth-inline-button {
  width: 100%;
  min-height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  cursor: pointer;
  transition: var(--transition);
}

.auth-ui .auth-inline-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (min-width: 32.5rem) {
  .auth-ui .auth-reset-actions {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Tablet: formulario primero e info debajo compacta */
@media (max-width: 59.3125rem) {
  .auth-ui .auth-page {
    align-items: flex-start;
    padding: 1.4rem 0 2rem;
  }

  .auth-ui .auth-wrapper,
  .auth-login .auth-wrapper,
  .auth-register .auth-wrapper,
  .auth-reset .auth-wrapper {
    max-width: 38rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .auth-ui .auth-card {
    max-width: none;
  }

  .auth-ui .auth-visual {
    text-align: left;
    padding: 1rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.42);
    border: 0.0625rem solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 1rem 2.5rem rgba(91, 64, 50, 0.055);
  }

  .auth-ui .auth-visual h1,
  .auth-ui .auth-visual h2 {
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
  }

  .auth-ui .auth-visual-text {
    margin: 0;
    font-size: 0.9rem;
  }

  .auth-ui .auth-benefits {
    margin-top: 0.85rem;
    gap: 0.55rem;
  }

  .auth-ui .auth-benefit {
    padding: 0.65rem 0.75rem;
  }

  .auth-ui .auth-benefit p {
    font-size: 0.86rem;
  }

  .auth-ui .auth-points-card {
    display: none;
  }
}

/* Móvil: solo formulario */
/* Móvil: formulario primero + información compacta debajo */
@media (max-width: 40rem) {
  .auth-ui .auth-header-link {
    display: none;
  }

  .auth-ui .auth-header-content {
    justify-content: center;
  }

  .auth-ui .auth-page {
    padding: 1rem 0 1.35rem;
  }

  .auth-ui .auth-wrapper {
    gap: 0.85rem;
  }

  .auth-ui .auth-card {
    border-radius: 1.25rem;
    padding: 1.1rem;
  }

  .auth-ui .auth-head {
    margin-bottom: 1rem;
  }

  .auth-ui .auth-head h1,
  .auth-ui .auth-head h2 {
    font-size: 1.75rem;
  }

  .auth-ui .auth-subtitle {
    font-size: 0.9rem;
  }

  .auth-ui .auth-form-grid {
    gap: 0;
  }

  .auth-ui .auth-field {
    margin-top: 0.78rem;
  }

  .auth-ui .auth-label-row {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .auth-ui .auth-label-row a {
    font-size: 0.78rem;
  }

  .auth-ui .auth-check {
    padding: 0.75rem;
    font-size: 0.82rem;
  }

  .auth-ui .auth-security-note {
    font-size: 0.76rem;
  }

  /* Información secundaria en móvil */
  .auth-ui .auth-visual {
    display: block;
    order: 2;
    padding: 0.9rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.42);
    border: 0.0625rem solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 0.75rem 2rem rgba(91, 64, 50, 0.045);
    text-align: left;
  }

  .auth-ui .auth-visual .auth-eyebrow {
    margin-bottom: 0.45rem;
    padding: 0.25rem 0.6rem;
    font-size: 0.76rem;
  }

  .auth-ui .auth-visual h1,
  .auth-ui .auth-visual h2 {
    max-width: none;
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
  }

  .auth-ui .auth-visual-text {
    max-width: none;
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .auth-ui .auth-benefits {
    margin-top: 0.75rem;
    gap: 0.45rem;
  }

  .auth-ui .auth-benefit {
    gap: 0.55rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.85rem;
    box-shadow: none;
  }

  .auth-ui .auth-benefit span {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8rem;
  }

  .auth-ui .auth-benefit p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  /* La tarjeta marrón ocupa demasiado en móvil; mantenemos la info en los bullets */
  .auth-ui .auth-points-card {
    display: none;
  }

  /* Reset password */
  .auth-ui .auth-reset-flow {
    gap: 0.55rem;
    padding: 0.75rem;
  }

  .auth-ui .auth-reset-step {
    gap: 0.4rem;
  }

  .auth-ui .auth-reset-step p {
    font-size: 0.8rem;
  }

  .auth-ui .auth-reset-step span {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 0.8rem;
  }

  .auth-ui .auth-code-input {
    letter-spacing: 0.26em;
  }
}

@media (max-width: 23.75rem) {
  .auth-ui .auth-label-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
/* Modal privacidad */
.auth-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.58);
  padding: 1rem;
}

.auth-modal-content {
  position: relative;
  width: min(90vw, 800px);
  height: min(80vh, 720px);
  margin: 5vh auto;
  background: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1.75rem 5rem rgba(0, 0, 0, 0.22);
}

.auth-modal-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.auth-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.8rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 40rem) {
  .auth-modal {
    padding: 0.6rem;
  }

  .auth-modal-content {
    width: 100%;
    height: 86vh;
    margin: 4vh auto;
    border-radius: 0.9rem;
  }
}

.auth-ui .auth-benefit p strong {
  color: var(--color-primary);
  font-weight: 700;
}

.auth-ui .auth-discount-card {
  background:
    linear-gradient(135deg, rgba(91, 64, 50, 0.94), rgba(91, 64, 50, 0.86)),
    var(--color-primary);
}

.auth-ui .auth-discount-card .auth-points-pill {
  background: rgba(216, 167, 177, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.95rem;
}