:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: #0b63ce;
}

body,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: #ffffff;
  color: #0b63ce;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1rem;
}

.textbox-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.center-textbox {
  width: min(24rem, 100%);
  min-height: 3rem;
  border: 1px solid #094b9c;
  border-radius: 8px;
  background: #ffffff;
  color: #102033;
  padding: 0.75rem 1rem;
  box-shadow: 0 18px 40px rgb(0 0 0 / 18%);
}

.center-textbox:focus {
  border-color: #ffffff;
  outline: 3px solid rgb(255 255 255 / 55%);
  outline-offset: 3px;
}
