/* Landing Page Background */
.landing-bg {
  background: radial-gradient(
    125% 125% at 50% 10%,
    #ffffff 40%,
    #6366f1 100%
  );
}

/* Optional: bikin teks lebih enak dibaca */
.landing-wrapper h1,
.landing-wrapper p {
  color: #111827;
}

[x-cloak] {
  display: none !important;
}

.import-alternative {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.25s ease;
}

.import-alternative.hidden {
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
}

.fade-up {
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid white;
  /* alternate border-color for four different sides */
  border-color: white transparent white transparent;
  animation: rotate 1.5s linear infinite;
}

@keyframes rotate{
  100% {
    transform: rotate(360deg);
  }
}