@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Russo+One&display=swap");
body {
  margin: 30px;
  padding: 30px;
  font-family: "Poppins";
  background-color: #f3f7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f3f7ff;
  font-weight: 400;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

form {
  max-width: 350px;
  margin: 0 auto;
  padding: 1em;
  background: #134b70;
  border-radius: 10px;
}
.title-bar {
  margin-top: -20px;
}

.title-bar h2 {
  color: #fabc3f;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 24px;
  padding-bottom: -0.5em;
}

.border-bottom {
  height: 5px;
  background-color: #fabc3f;
  border-radius: 50px;
  width: 100%;
  color: transparent !important;
}

p {
  font-size: 18px;
  font-family: "Poppins";
  margin-bottom: 1em;
  font-weight: 600;
}

label {
  display: block;
  margin-bottom: 0.5em;
  color: #fabc3f;
}

input,
textarea {
  width: 100%;
  padding: 0.5em;
  border: 2px solid #134b70;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #f3f7ff;
}

input[type="submit"] {
  font-family: "Poppins";
  font-weight: 600;
  background: #fabc3f;
  color: #134b70;
  border: none;
  padding: 1em;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
}

input[type="submit"]:hover {
  background: #f3f7ff;
  color: #316cf4;
  transition: 0.2s;
}

.question {
  text-align: center;
  color: white;
  font-family: "Poppins";
}

.question h3 {
  font-size: 16px;
  font-weight: 600;
}

.question a {
  padding-left: 5px;
  color: #fabc3f;
  text-decoration: none;
  transition: color 0.2s;
}

.question a:hover {
  color: #316cf4;
  text-decoration: wavy;
}

.back-button {
  color: #f3f7ff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Poppins";
}

.back-button button {
  background-color: #134b70;
  color: #f3f7ff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Poppins";
}

.back-button button:hover {
  background-color: #316cf4;
  transition: 0.2s;
}

.helptext {
  font-size: 14px; /* Atur ukuran font sesuai kebutuhan */
  color: #f3f7ff; /* Atur warna font sesuai kebutuhan */
  margin-top: -10px; /* Atur margin sesuai kebutuhan */
  font-weight: 400;
}
.helptext ul {
  padding-left: 20px; /* Tambahkan padding kiri untuk indentasi */
  margin-top: 10px; /* Tambahkan margin atas untuk jarak dari teks sebelumnya */
  list-style-type: disc; /* Gunakan bullet points */
}

.helptext ul li {
  margin-bottom: 5px; /* Tambahkan margin bawah untuk jarak antar item */
  font-size: 14px; /* Atur ukuran font sesuai kebutuhan */
  color: #f3f7ff; /* Atur warna font sesuai kebutuhan */
  font-weight: 400; /* Atur ketebalan font sesuai kebutuhan */
}
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #fabc3f #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 30px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #fabc3f;
  border-radius: 100px;
  border: 4px solid #ffffff;
}

ul {
  font-size: 14px;
}
