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

.splash-root {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  background: #FAF6F1;
}

.splash-logo {
  border-radius: 20px;
  margin-bottom: 24px;
}

.splash-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e0d9cf;
  border-top-color: #5B7553;
  border-radius: 50%;
  animation: splash-spin 0.7s linear infinite;
}
