/* Shared baseline for public mobile pages to behave like native webviews. */
* {
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  min-height: 100dvh;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  touch-action: manipulation;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: 16px;
}

input,
textarea,
select {
  transform: translateZ(0);
}
