#app-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  background: #fbfaf8;
  color: #075e54;
  font: 600 16px system-ui, -apple-system, sans-serif;
  letter-spacing: .02em;
}

#app-loader > div {
  text-align: center;
}

#app-loader i {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  border: 4px solid #cce5df;
  border-top-color: #075e54;
  border-radius: 50%;
  animation: app-loader-spin .75s linear infinite;
}

#app-loader button {
  display: block;
  min-width: 112px;
  margin: 20px auto 0;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: #075e54;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

#app-loader button:focus-visible {
  outline: 3px solid #e2b93b;
  outline-offset: 3px;
}

@keyframes app-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
