body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f3f8;
  font-family: Poppins, Helvetica, 'sans-serif';
}

.splash-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.splash-screen__logo {
  width: 160px;
  max-width: 60vw;
}

.splash-screen__status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #7e8299;
}

.splash-screen__spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 4px solid #e1e3ea;
  border-top-color: #c7792a;
  animation: splash-screen-spin 0.9s linear infinite;
}

.splash-screen__hint {
  margin: 0;
  font-size: 0.875rem;
  color: #a1a5b7;
}

@keyframes splash-screen-spin {
  to {
    transform: rotate(360deg);
  }
}
