html {
  height: 100%;
  width: 100%;
}
body {
  height: 100%;
  overflow-x: hidden;
  background-color: #f0f3ff;
}
#main {
  height: 100%;
  padding: 50px 50px 75px 100px;
}
.design {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Muli", sans-serif;
  color: #333;
}

/* .container {
  align-items: center;
  justify-content: center;
} */

.image1 {
  height: 70px;
  width: 70px;
}

.image2 {
  max-width: 20%;
  height: auto;
}

/* Garis Tepi Bawah */
.garis-container {
  display: flex;
  justify-content: center;
}

.garis {
  width: 40%; /* Atur lebar garis */
  color: #508d69;
  height: 2px;
}
/* End Garis Tepi Bawah */

/* NavBar */
.navbar-custom {
  background-color: #508d69 !important;
}
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
  color: black;
}

.navbar-custom .navbar-toggler {
  color: white;
}
/* End NavBar */

.h1 {
  font-family: "Muli", sans-serif;
  font-size: 40px;
  text-align: center;
  font-weight: bold;
}

.h3 {
  font-family: "Muli", sans-serif;
  font-size: 20px;
  text-align: center;
}

/* Footer */
/* Mengatur warna teks dan latar belakang footer */
footer {
  background-color: #508d69 !important;
  color: #fff;
}

/* Mengatur margin bawah pada elemen h4 di dalam footer */
footer h4 {
  margin-bottom: 1rem;
}

/* Mengatur warna teks untuk link di dalam footer */
footer a {
  color: #fff;
}

/* Mengatur hover pada link di dalam footer */
footer a:hover {
  color: #ccc;
}
/* End Footer */

/* Button */
.btn-primary {
  color: #fff !important;
  background-color: #508d69;
  border-color: #508d69;
  border-radius: 80px;
}
.btn-primary:hover {
  background-color: #436850 !important;
  border-color: #436850 !important;
}
/* End Button */

#main .form-control {
  font-family: "Muli", sans-serif !important;
  height: calc(1.5em + 1rem + 2px);
  border-right: unset;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
#main .form-control:focus {
  box-shadow: unset;
  border-color: #ced4da;
}
::placeholder {
  font-family: "Muli", sans-serif !important;
  color: #ced4da !important;
}
#main .input-group-text {
  background-color: #fff;
  border-left: unset;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  color: #999;
}
#main form a {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9em;
  color: #8c8c8c;
  text-decoration: unset;
}

.form-container {
  border-left: 1.5px solid #f2f2f2;
  padding-left: 30px;
}

//Responsivitas
/* Mobile */
@media (max-width: 320px) {
  #main {
    padding: 10px;
  }
  .col-md-6 {
    border: unset !important;
  }
  .design {
    top: 40%;
  }
  .footer-custom {
    margin-top: 20px;
  }
}

/* Mobile Landscape atau Small Tablets */
@media (max-width: 480px) {
  #main {
    padding: 50px 10px;
  }
  .design {
    top: 100%;
  }
  .footer-custom {
    margin-top: 60px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  #main {
    padding: 60px 20px;
  }
  .design {
    top: 130%;
  }
  .container {
    flex-direction: column; /* Tampilkan dalam satu kolom di bawah 768px */
  }

  .form-container {
    border-left: none; /* Hapus border kiri saat dalam mode mobile */
    padding-left: 0; /* Hapus jarak kiri saat dalam mode mobile */
    border-top: 1.5px solid #f2f2f2; /* Tambahkan border atas untuk memisahkan gambar dan form */
  }
}

/* Desktops */
@media (max-width: 992px) {
}
