/* Animasi fade-in untuk container form */
.col.mt-5 {
  animation: fadeInUp 1s ease-in-out;
}

/* Efek input saat focus */
.form-control, .form-select {
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.3);
  transform: scale(1.02);
}

/* Tombol daftar */
#btndaftar {
  background: linear-gradient(45deg, #212529, #343a40);
  color: #fff;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

#btndaftar:hover {
  background: linear-gradient(45deg, #343a40, #212529);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

#btndaftar:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Animasi judul */
.sese {
  position: relative;
  animation: slideDown 1s ease;
}

/* animasi fade in */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

p a {
  position: relative;
  font-weight: 400;
  transition: color 0.3s ease;
}

p a:hover {
  color: #0056b3; /* lebih gelap saat hover */
}

/* Efek underline animasi */
p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #0d6efd; /* biru bootstrap */
  transition: width 0.3s ease;
}

p a:hover::after {
  width: 100%;
}

.form-text {
    font-size: 10px;
}
