/* Preloader full screen */
#preloader {
  position: fixed;
  inset: 0;
  background: #d7e1eb;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
}

/* Fade out preloader */
#preloader.hidden {
  animation: fadeOut 0.6s ease forwards;
  pointer-events: none;
}

/* Logo loader */
.loader-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

/* Spinner ring */
.spinner-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(#4b6fa8, #799bcb, #4b6fa8);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
  mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
  animation: spin 1.5s linear infinite;
}



/* Animasi */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}