.auth-shell {
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(24px + env(safe-area-inset-top)) 18px calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.auth-card {
  width: min(420px, 100%);
  max-width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.auth-brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #20294f;
  color: white;
  font-weight: 800;
  margin-bottom: 18px;
}

.auth-brand-logo {
  width: 64px;
  height: 64px;
  display: block;
  margin-bottom: 18px;
}

.auth-card h1 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.auth-runtime {
  margin: -2px 0 12px;
  color: #475467;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.auth-card p {
  color: var(--muted);
}
