body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  background-color: #0f172a;
}

.text-p {
  color: rgba(255, 255, 255, 1);
}

.bg-black {
  background-color: #0b1323 !important;
}

.bg-gradient {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.placeholder-light::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.dropdown-menu-dark {
  background-color: #111 !important;
  border-radius: 12px;
  padding: 10px;
}
.dropdown-item:hover {
  background-color: #ffc107;
  color: #000 !important;
}

img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.btn {
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.custom-toggler {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.25rem;
  width: 40px;
  height: 40px;
}

.toggler-icon {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffc107; /* Warna kuning */
  border-radius: 2px;
  transition: all 0.3s ease;
}

.custom-toggler[aria-expanded="true"] .top-bar {
  transform: rotate(45deg) translateY(8px);
}

.custom-toggler[aria-expanded="true"] .middle-bar {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .bottom-bar {
  transform: rotate(-45deg) translateY(-8px);
}

.card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background-color: #1e1e1e;
  color: white;
}
.form-control {
  border-radius: 10px;
}
.btn-custom {
  background-color: #ffc107;
  color: white;
  font-weight: 600;
  border-radius: 10px;
}
.btn-custom:hover {
  background-color: #ffc107;
}
.qr-preview {
  border-radius: 15px;
  padding: 20px;
  background: #ffffff;
  color: #000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

footer {
  font-size: 0.9rem;
}
