/* Guest account-page fallback for browsers without the header auth modal. */

.customer-auth-entry {
  display: grid;
  gap: clamp(18px, 3vw, 24px);
  width: min(100%, 760px);
  max-width: none;
  margin: clamp(24px, 5vw, 56px) auto;
  padding: clamp(24px, 5vw, 44px);
  overflow: hidden;
  border: 1px solid var(--customer-border);
  border-radius: 22px;
  background: var(--customer-surface);
  box-shadow: 0 18px 44px rgba(15, 35, 67, 0.08);
  color: var(--customer-text);
}

.customer-auth-entry__header {
  display: grid;
  gap: 10px;
}

.customer-auth-entry__header .eyebrow {
  margin: 0;
  color: var(--customer-muted);
}

.customer-auth-entry h1 {
  max-width: 18ch;
  margin: 0;
  color: var(--customer-ink);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.customer-auth-entry--handoff h1 {
  max-width: 25ch;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  line-height: 1.1;
}

.customer-auth-entry__lead {
  max-width: 60ch;
  margin: 0;
  color: var(--customer-muted);
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.55;
}

.customer-auth-entry__actions {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.customer-auth-entry .customer-auth-entry__primary-action {
  min-height: 50px;
  padding-inline: 20px;
  border-radius: 11px;
}

.customer-auth-entry__primary-action svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.customer-auth-entry__signup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 7px;
  margin: 0;
  color: var(--customer-muted);
  font-size: 0.94rem;
}

.customer-auth-entry__secondary-action {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--customer-primary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.customer-auth-entry__secondary-action:hover {
  color: var(--customer-primary-dark);
  text-decoration-thickness: 2px;
}

@media (max-width: 560px) {
  .customer-auth-entry {
    gap: 18px;
    margin-block: 18px 28px;
    padding: 22px;
    border-radius: 18px;
  }

  .customer-auth-entry h1 {
    max-width: none;
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .customer-auth-entry--handoff h1 {
    font-size: clamp(1.65rem, 7.5vw, 2rem);
  }

  .customer-auth-entry__actions,
  .customer-auth-entry .customer-auth-entry__primary-action {
    width: 100%;
  }

  .customer-auth-entry .customer-auth-entry__primary-action {
    justify-content: center;
  }
}

@media (max-width: 350px) {
  .customer-auth-entry {
    padding: 18px;
  }

}
