main{
  margin: 20px;
}
.daftar-container {
  background-color: white;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
}
.kolom-daftar {
  display: flex;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  flex-direction: column;
  background-color: #ccc;
  margin-bottom: 30px;
}

.kolom-daftar label {
  font-size: 11px;
  padding: 10px;
}
.kolom-daftar input,
select {
  border: none;
  background: none;
  padding: 10px;
}
.kolom-daftar input::placeholder {
  font-style: italic;
  font-size: 11px;
}
.kolom-daftar select:focus {
  border: none;
  outline: none;
}
.kolom-daftar input:focus {
  border: none;
  outline: none;
}

.kolom-handphone {
  display: flex;
  border-bottom: 2px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 5px;
}
.kode-negara {
  display: flex;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  flex-direction: column;
  background-color: #aaa;
  margin-right: 10px;
  width: 30%;
}
.kode-negara label {
  font-size: 11px;
  padding: 10px;
}
.kode-negara span {
  font-size: 11px;
  padding: 10px;
}
.kolom-handphone input {
  border: none;
  background: none;
  padding: 10px;
  background-color: #ccc;
  width: 70%;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.kolom-handphone input::placeholder {
  font-style: italic;
  font-size: 11px;
}
.kolom-handphone input:focus {
  border: none;
  outline: none;
}
.input-container {
  position: relative;
}

.input-container input {
  width: 100%;
  padding-right: 35px; /* beri ruang untuk ikon */
}

.input-container i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.dropdown-wrapper {
  position: relative;
  width: 100%;
  font-size: 11px;
}

.dropdown-selected {
  background-color: #ccc;
  padding: 10px;
  cursor: pointer;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ccc;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  display: none;
  border: 1px solid #aaa;
  z-index: 10;
  max-height: 120px; /* tinggi maksimal */
  overflow-y: auto; /* scroll vertikal jika perlu */
  box-shadow: inset 0 6px 6px -6px rgba(0, 0, 0, 0.1),
    inset 0 -6px 6px -6px rgba(0, 0, 0, 0.1); /* shadow atas & bawah */
}

.dropdown-item {
  padding: 10px;
  border-top: 1px solid #aaa;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #f1c40f;
}

.quote-daftar {
  width: 100%;
  margin: 0 auto;
  display: flex;
  margin-top: 10px;
  flex-direction: column;
  background-color: white;
  padding: 10px;
}
.quote-daftar p {
  font-size: 12px;
  text-align: center;
  margin: 10px;
}
.quote-daftar span {
  color: #f1c40f;
  font-size: 12px;
  text-align: center;
}
.button-daftar {
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
}
.button-daftar input {
  padding: 10px;
  width: 100%;
  border: none;
  outline: none;
  background: #f1c40f;
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-shadow: 1px 1px 0px rgba(0, 0, 1);
}
.masuk-daftar {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 20px;
}
.masuk-daftar a {
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  border: none;
  outline: none;
  background: #222;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  text-shadow: 1px 1px 0px rgba(0, 0, 1);
}
.masuk-daftar span {
  font-size: 13px;
  padding: 10px;
}
