.account-access {
  display: grid;
  min-block-size: min(38rem, calc(100vh - 12rem));
  align-items: center;
  justify-items: center;
}

.account-access__card {
  inline-size: min(100%, 31rem);
  border: 1px solid var(--store-border);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--store-surface);
  box-shadow: 0 1rem 3rem rgb(23 34 28 / .08);
}

.account-access__heading {
  margin-block-end: 1.75rem;
}

.account-access__heading h1 {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.account-access__heading p {
  margin: .75rem 0 0;
  color: var(--store-muted);
  line-height: 1.55;
}

@media (max-width: 40rem) {
  .account-access {
    min-block-size: 0;
    align-items: start;
  }

  .account-access__card {
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 .75rem 2rem rgb(23 34 28 / .07);
  }
}
