#boot-splash {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.boot-splash__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.boot-splash__spinner {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 3px solid #dbeafe;
  border-top-color: #2563eb;
  animation: boot-spin 0.9s linear infinite;
}

@keyframes boot-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
