@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular.ttf");
}

@font-face {
    font-family: "Gilroy-Bold";
    src: url(../fonts/Gilroy-Semibold.ttf) format("truetype");
}

@font-face {
    font-family: "Gilroy-Heavy";
    src: url("../fonts/Gilroy-Heavy.ttf");
  }

/* @font-face {
  font-family: "Muli-Regular";
  src: url("../fonts/Gilroy-Medium.ttf");
} */

@font-face {
  font-family: "Gilroy-Semibold";
  src: url("../fonts/Gilroy-Semibold.ttf");
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Gilroy-Regular";
  font-size: 12px;
  margin: 0;
  color: #fff;
}

input,
textarea,
select,
button {
  font-family: "Gilroy-Semibold";
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
}

img {
  max-width: 100%;
}

.logo-img {
  max-width: 100%;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  color: #000000;
}

a {
  text-decoration: none;
}

:focus {
  outline: none;
}

.wrapper {
  min-height: 100vh;
  display: flex;
}

.wrapper .image-holder {
  width: 50%;
}

.wrapper .form-inner {
  width: 50%;
}

.image-holder {
  background: url("../images/registration-form-bg-npm.jpg") no-repeat;
  /* background: url("https://wallpapers.com/downloads/high/jakarta-selamat-datang-monument-rljwa9lrvcudz3oe.webp") no-repeat; */
  background-size: cover;
}

.image-holder img {
  display: none;
}

.form-inner {
  background: #15281a;
  padding-top: 16.36vh;
  padding-left: 4vw;
  padding-right: 4vw;
}

form {
  width: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 20px;
}

h3 {
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Roboto";
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Gilroy-Semibold";
  margin-bottom: 15px;
}

label {
  margin-bottom: 6px;
  display: block;
  color: #ffffff;
  font-family: "Gilroy-Regular";
}

.form-container-2 {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: 1fr;
  gap: 10px;
  /* Optional: space between columns */

  @media (min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-container-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;

  @media (min-width: 768px) {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


.form-group {
  margin-bottom: 13px;
  position: relative;
}

.form-control {
  border: 1px solid #9b9b9b;
  border-radius: 5px;
  display: block;
  width: 100%;
  height: 35px;
  /* background: none; */
  padding: 0 19px;
  color: #181818;
  font-size: 14px;
}

.text-control {
  border: 1px solid #9b9b9b;
  border-radius: 5px;
  display: block;
  width: 100%;
  height: 45px;
  /* background: none; */
  padding: 0 19px;
  color: #181818;
  font-size: 14px;
}

.text-dark {
  color: #000000;
}

.text-light {
    color: #ffffff;
  }

.text-center {
  text-align: center;
  display: inline-block;
}

.form-control.error {
  border-color: #ff0020 !important;
  background: url("../images/error.png") no-repeat center right 19px;
  background-color: #fff;
  color: #ff0020;
}

.form-control.valid {
  border-color: #01682f !important;
  background: url("../images/valid.png") no-repeat center right 19px;
  background-color: #fff;
  color: #000000;
}

.form-error {
  margin-top: 10px;
  display: inline-block;
  color: #ff001e;
  font-size: 12px;
}

.button {
  font-family: "Gilroy-Semibold";
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  /* Tambahkan properti lebar dan tinggi sesuai kebutuhan Anda */
  width: 150px;
  /* Sesuaikan lebar sesuai kebutuhan */
  height: 40px;
  /* Sesuaikan tinggi sesuai kebutuhan */
}

.button.cancel {
  background-color: #ffffff;
  color: #575757;
}

.button.submit {
  background-color: #012168;
  color: #fff;
}

.button.cancel:hover {
  color: #fff;
  background-color: #ff0000;
  /* Ubah warna latar belakang menjadi merah saat dihover */
}

.button.submit:hover {
  background-color: rgb(240, 225, 13);
  /* Ubah warna latar belakang menjadi biru saat dihover */
}


.socials {
  text-align: center;
  margin-top: 59px;
}

.socials-icon {
  display: inline-flex;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 19px;
  color: #fff;
  transition: all 0.5s ease;
  margin-right: 19px;
}

.socials-icon:hover {
  background: #fff;
  border: 1px solid transparent;
  color: #ff97a4;
}

.socials-icon:last-child {
  margin-right: 0;
}

p {
  font-family: "Gilroy-Regular";
  color: #000000;
  /* margin-bottom: 22px; */
}

@media (max-width: 1500px) {
  .form-inner {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

@media (max-width: 1199px) {
  .wrapper {
    flex-direction: column;
  }

  /* .wrapper .image-holder {
    width: 100%;
    height: 45vh;
  } */

  .image-holder img {
    display: none;
  }

  .wrapper .form-inner {
    width: 100%;
    height: 55vh;
  }

  .form-inner {
    padding-left: 20vw;
    padding-right: 20vw;
  }

  .button {
    width: 50%;
  }
}

@media (max-width: 991px) {
  /* .wrapper .image-holder {
    height: 37vh;
  } */

  .image-holder img {
    display: none;
  }

  .wrapper .form-inner {
    height: 63vh;
  }

  .socials {
    margin-top: 40px;
  }

  .form-header {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .wrapper .form-inner {
    height: auto;
  }

  .wrapper .image-holder {
    height: auto;
  }

  .image-holder img {
    display: none;
  }

  .form-inner {
    padding: 30px 20px;
  }

  .button {
    width: 100%;
  }
}

.button-container {
  padding-top: 5px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Vertically center-align the buttons */
}

.button-container .button {
  flex: 1;
  /* Equal width for both buttons */
  padding: 10px;
  margin: 0 5px;
  /* 10px spacing between buttons */
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.button-container .cancel {
  background-color: #ffffff;
  color: #575757;
  border: 1px solid #012168;
  text-align: center;
}

.button-container .submit {
  background-color: #d9d006;
  color: #fff;
}


/*# sourceMappingURL=style.css.map */