/* Versioned mobile auth scroll safeguard. Keep this URL unique so installed PWAs
   cannot reuse the older CacheFirst stylesheet after an upgrade. */
.auth-page {
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

@media (min-width: 481px) {
  .auth-page {
    height: calc(100dvh - var(--control-min-size)) !important;
  }
}
