html,
body {
  margin: 0;
  min-height: 100%;
  background: #f9f9fc;
}

#app-loader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #263238;
  font: 600 18px system-ui, sans-serif;
}

#app-loader img {
  width: min(280px, 70vw);
  height: auto;
}

#app-loader-progress {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(15, 110, 140, 0.2);
  border-top-color: #0f6e8c;
  border-radius: 50%;
  animation: loader-spin 0.8s linear infinite;
}

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

@media (prefers-color-scheme: dark) {
  html,
  body {
    background: #111416;
  }

  #app-loader {
    color: #e1e3e3;
  }
}
