 body {
        font-family: "Inter", system-ui, sans-serif;
      }

      #brosur-slider button {
  backdrop-filter: blur(4px); /* tombol lebih halus */
}

#brosur-dots span {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.3s;
}

#brosur-dots span.active {
  background-color: white;
}
/* //daftar.php animation */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fade-in 0.25s ease-out;
}
