


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}


body {
background: #111;  
background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'POPPINS';
  background-attachment: fixed;
}



header {
  position: sticky;
  top: 0;
  z-index: 99;
}

.container {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background-color: #111;
  width: 100%;
  align-items: center;
  max-height: 70px;
}

.logo-container img {
  width: 150px;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
}

.anchor-text a {
  color: var(--theme-text);
  font-size: 12px;
 background: linear-gradient(
    to right,
    var(--theme-color-1),
    var(--theme-color-2)
  );  padding: 5px 20px;
  border-radius: 5px;
  font-weight: bold;
  width: 100px;
  text-decoration: none;
}


.slide-container img {
  width: 100%;
  height: 200px;
  object-fit: fill;
}

.text {
  display: flex;
  padding: 10px;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 14px;
  letter-spacing: 2;

}

.form-login {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding: 0 20px;
}


.username-block,
.password-block {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding: 5px;
  overflow: hidden;
  gap: 2px;
}

/* Icon kiri */
.form-login i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-text);
  padding: 5px 10px;
  font-size: 12px;
border: 2px solid var(--theme-color-1);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, var(--theme-color-1), var(--theme-color-2));
}

.username-block input,
.password-block input {
  flex: 1;
  border-left: none;
  outline: none;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
  /* shadow di semua sisi */
}

.username-block input::placeholder,
.password-block input::placeholder {
  text-align: center;
  font-size: 12px;
}

.form-text {
  display: flex;
  justify-content: space-between;
}

.form-text a {
  color: white;
  font-size: 14px;
}

.buttonhome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  width: 100%;
  margin: 0 auto;
}

.buttonhome button {
  padding: 8px;
  border: 2px solid var(--theme-color-1);
  background-color: #222;
  color: var(--theme-color-1);
  width: 100%;
  font-weight: bold;
  border-radius: 5px;
  font-size: 14px;
}

.buttonhome a {
background: linear-gradient(
    to right,
    var(--theme-color-1),
    var(--theme-color-2)
  );  width: 100%;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  
  text-decoration: none;
  color: var(--theme-text);
  font-weight: bold;
  border-radius: 5px;

}

.button-3d {
  position: relative;
  overflow: hidden;

  width: 90%;
  margin: 20px auto 0;
  border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;

  padding: 10px;
  background: linear-gradient(to top, #111, var(--theme-color-1));
border: 4px solid var(--theme-color-1);

  box-shadow:
    0 2px 3px rgba(0, 0, 0, 0.4) inset,
    0 10px 15px rgba(0, 0, 0, 0.4);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
color: white;
  font-weight: bold;
}

/* ✨ shine light yang lewat */
.button-3d::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  transform: skewX(-25deg);
  animation: shine 1s linear infinite;
}

/* ✨ animasi cahaya melintas */
@keyframes shine {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

.carousel-container {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 20px;
  overflow-x: auto;
}

.carousel-container {
  overflow-x: scroll;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-container img {
  width: 100px;
}

.tombol-tombolan {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 20px;
  gap: 10px;
}

.tombol-tombolan a {
  text-decoration: none;
  background: blue;
  padding: 5px;
  color: var(--theme-text);
  font-size: 16px;
  font-weight: bold;
  text-transform: capitalize;
  border-radius: 5px;
}

.tombol-tombolan .a1 {
background: linear-gradient(
  to bottom,
  var(--theme-color-1),
  var(--theme-color-2)
);
}

.tombol-tombolan .a2 {
background: linear-gradient(
  to bottom,
  var(--theme-color-2),
  var(--theme-color-1)
);}

.tombol-tombolan .a3,
.tombol-tombolan .a4 {
background: linear-gradient(
  to bottom,
  var(--theme-color-1),
  var(--theme-color-2)
);
}


.toast {
  display: flex;
  align-items: center;
  min-width: 250px;
  background-color: whitesmoke;
  color: black;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateX(120%);
  border-radius: 5px;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.toast i {
  font-size: 30px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
background: linear-gradient(
    to right,
    var(--theme-color-1),
    var(--theme-color-2)
  );  width: 100%;
  transition: width linear;
}

.message {
  font-size: 14px;
}



.slide-container {
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.slide-wrapper {
  position: relative;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--theme-text);
  outline: none;
  font-size: 20px;
  z-index: 9;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: bold;

}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}


.slide-track img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  padding: 0 10px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.slide-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 9;
}

.slide-indicators span {
  width: 35px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

.slide-indicators span.active {
  background: white;
}


.figure-container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  color: white;
  margin-top: 10px;
}
.figure-container figure{
border: 1px solid var(--theme-color-1);
  text-align: center;
  margin: 0;
  padding: 0;
background: linear-gradient(
    to bottom,
    var(--theme-color-1),
    #111
  );  border-radius: 10px;
}

.hasilakhir{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
padding: 5px;
}
.hasilakhir small{
  font-size: 10px;
  color: white;
  font-weight: 600;
}
.hasilakhir span{
  font-size: 20px;
  font-weight: 600;
color: white;
  display: inline-block;
writing-mode: vertical-rl;
text-orientation: upright;
line-height: 1.2;
}
.nama-section{
background: linear-gradient(
  to right,
  var(--theme-color-1),
  var(--theme-color-2)
);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: var(--theme-text);
    font-size: 10px;
    font-weight: bold;

}

.bankimg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

/* WRAPPER */
.bank-item {
  position: relative;
}

/* BACKGROUND PUTIH */
.bank-box {
  background: #fff;
  padding: 5px 15px;
  border-radius: 6px;
}

/* LOGO */
.bank-box img {
  width: 100%;
  height: 20px;
  object-fit: contain;
  display: block;
}

/* DOT STATUS */
.status-dot {
  position: absolute;
  top: 50%;
  left: -15px;
  /* ← KELUAR DARI BOX PUTIH */
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #00ff4c;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 255, 76, 0.8);
}
