@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Sarabun&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-family: 'Sarabun', sans-serif;
  font-size: 20px;
}
hr{
    border-radius: 5px;
    margin: 10px 0px;
}
body {
  background: #f2f2f2;
  padding: 0 10px;
}
.wrap-a{ 
    border-radius: 10px;
    max-width: 1024px;
    width: 100%;
    margin: 10px auto;

  }

.a-green{
  text-align: center;
  border-radius: 10px;
  max-width: 1024px;
  padding: 10px;
  width: 100%;
  background: rgba(116, 245, 116, 0.9);
  box-shadow: 1px 1px 2px gray;
}
.wrapper {
  border-radius: 10px;
  max-width: 1024px;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  margin: 20px auto;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.125);
  padding: 30px;
}
.wrapback {
  border-radius: 10px;
  max-width: 1024px;
  width: 100%;
  margin: 20px auto;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.125);

}
.backto{
  padding: 10px;
  border-radius: 10px;
  background-color: red;
  display: flex;
  justify-content: center;
  a{
      text-decoration: none;
      color: white;
  }
}
.head-wrapper {
  border-radius: 10px;
  max-width: 1024px;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  margin: 40px auto;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.125);
  padding: 30px;
  span{
    color:white;
  }
}

.wrapper .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
  color: white;
  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;
  gap:10;
}

.wrapper .form .inputfield label,
.wrapper .form .inputfield span{
  width: 150px;
  color: white;
  font-weight: 400;
  margin: 0 10px;
  font-size: 18px;
  text-shadow:black 0.1em 0.1em 0.2em;
}
.wrapper .form .inputfield a{
    text-shadow: none;

}

.wrapper .form .inputfield .input,
.wrapper .form .inputfield .textarea {
  width: 100%;
  outline: none;
  border: 1px solid #d5dbd9;
  font-size: 15px;
  padding: 10px 10px;
  border-radius: 3px;
  transition: all 0.3s ease;
}


.wrapper .form .inputfield .textarea {
  width: 100%;
  height: 125px;
  resize: none;
}


.wrapper .form .inputfield p {
  font-size: 16px;
  text-align: start;
  letter-spacing: 1.1px;
  color: white;
  font-weight: 400;
  white-space: pre-line; 
  text-shadow:black 0.1em 0.1em 0.3em;
}



.wrapper .form .inputfield .btn {
  width: 100%;
  padding: 8px 10px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  border: 0px;
  background: #0019fa;
  color: white;
  cursor: pointer;
  border-radius: 3px;
  outline: none;
  text-shadow:black 0.1em 0.1em 0.2em;
}

.wrapper .form .inputfield .btn:hover {
  background: #00fa9a;
}

.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;
  }

}



.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 15s linear infinite;
  animation: runner 15s linear infinite;
  display: flex;
  transform: translateX(25%);
}

.images-line .line {
  --tile-margin: 3vw;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 50%;
  flex: none;
  height: 40vh;
  margin: 2vw;
  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(-25%);
  }
}

@keyframes runner {
  to {
    transform: translateX(-25%);
  }
}

*/