html,
body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  background: #f8fafc;
}

html[data-theme='dark'],
html[data-theme='dark'] body {
  background: #0f172a;
}

#root {
  min-height: 100vh;
  min-height: 100dvh;
}

.app-boot {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: inherit;
  color: #64748b;
  font-family: system-ui, -apple-system, sans-serif;
}

html[data-theme='dark'] .app-boot {
  color: #94a3b8;
}

.app-boot__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.app-boot__spinner {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: app-boot-spin 0.7s linear infinite;
  opacity: 0.7;
}

@keyframes app-boot-spin {
  to {
    transform: rotate(360deg);
  }
}
