@import url('https://fonts.googleapis.com/css2?family=Mali&family=Roboto&family=Sarabun&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Sarabun', sans-serif;

  font-size: 20px;
}
hr{
    border-radius: 5px;
}
body {
  background: #f2f2f2;
  padding: 0 10px;
}
.wrapper {
  border-radius: 10px;
  max-width: 960px;
  width: 100%;
  background: rgba(0, 0, 0, 1);
  margin: 40px auto;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  padding: 30px;
}

.wrapper .title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  text-shadow:black 0.1em 0.1em 0.2em;
}

.wrapper .form {
  width: 100%;
  margin-top: 20px;
}

.wrapper .form .inputfield {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.wrapper .form .inputfield label {
  width: 250px;
  color: #fff;
  font-weight: 400;
  margin-right: 10px;
  font-size: 18px;
  text-shadow:black 0.1em 0.1em 0.2em;
}
.wrapper .form .inputfield2 label {

  color: #fff;
  font-weight: 400;
  margin-right: 10px;
  font-size: 18px;
  line-height: 2rem;
  text-shadow:black 0.1em 0.1em 0.2em;
}
.wrapper .form .inputfield a{
    text-shadow: none;
    color: white;

}

.wrapper .form .inputfield .input,
.wrapper .form .inputfield .textarea {
  width: 100%;
  outline: none;
  border: 1px solid #d5dbd9;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.wrapper .form .inputfield .textarea {
  width: 100%;
  height: 125px;
  resize: none;
}

.wrapper .form .inputfield .custom_select {
  position: relative;
  width: 100%;
  height: 37px;
}

.wrapper .form .inputfield .custom_select:before {
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  border: 8px solid;
  border-color: #d5dbd9 transparent transparent transparent;
  pointer-events: none;
}

.wrapper .form .inputfield .custom_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;

  border: 0px;
  padding: 8px 10px;
  font-size: 15px;
  border: 1px solid #d5dbd9;
  border-radius: 3px;

}

.wrapper .form .inputfield .input:focus,
.wrapper .form .inputfield .textarea:focus,
.wrapper .form .inputfield .custom_select select:focus {
  border: 1px solid #fff;
}

.wrapper .form .inputfield p {
  font-size: 18px;
  line-height: 1.5rem;
  color: #fff;
  font-weight: 500;
}
.wrapper .form .inputfield option {
    font-size: 18px;
    color: black;
    font-weight: 500;


  }
hr{
  margin: 5px 5px;
}


.wrapper .form .inputfield .btn {
  width: 100%;
  padding: 8px 10px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  border: 0px;
  background: #5de9bf;
  color: black;
  cursor: pointer;
  border-radius: 3px;
  outline: none;

}

.wrapper .form .inputfield .btn:hover {
  background: #5de9bf;
}

.wrapper .form .inputfield:last-child {
  margin-bottom: 0;
}

@media (max-width: 420px) {
  .wrapper .form .inputfield {
    flex-direction: column;
    align-items: flex-start;
  }
  .wrapper .form .inputfield label {
    margin-bottom: 5px;
  }
  .wrapper .form .inputfield.terms {
    flex-direction: row;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');


.wrapper-images {
  display: flex;
  flex-direction: column;
  height: 150vh;
  justify-content: center;
  left: 50%;
  position: fixed;
  top: 50%;
  opacity: 0.6;
  transform: translate3d(-50%, -50%, 0) rotate(22.5deg);
  z-index: -1;

}

.images-line {
  -webkit-animation: runner 35s linear infinite;
  animation: runner 35s linear infinite;
  display: flex;
  transform: translateX(20%);
}

.images-line .line {
  --tile-margin: 2vw;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 50%;
  flex: none;
  height: 40vh;
  margin: 1vw;
  width: 40vh;
  position: relative;
}

.images-line .line:after {
  content: "";
  background: inherit;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 3vh;
  position: absolute;
  background-size: cover;
  z-index: -1;
  filter: blur(10px) opacity(0.9);
}

.images-line .line.large {
  border-radius: 20vh;
  width: 100vh;
}


@-webkit-keyframes runner {
  to {
    transform: translateX(-22%);
  }
}

@keyframes runner {
  to {
    transform: translateX(-22%);
  }
}