#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.splash-spinner {
  width: 3rem;
  height: 3rem;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
}

.splash-spinner .path {
  stroke: var(--primary, #6366f1);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  fill: none;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

.splash-msg-text {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  color: #64748b;
  font-weight: 500;
}
