@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}
.form-container__subtitle {
  color: white;
  height: 10px;
  width: 400px;
  text-decoration: none;
  margin-bottom: 50px;
  text-align: center;
}

#contoh4 {
  width: 100%;
  height: 50px;
  object-fit: contain;
}
  
.wrapper{
  position: relative;
  margin: 50px auto;
  max-width: 700px;
  width: 100%;
  background: #fff;
  padding: 50px;
  border-radius: 0,1px;
  
}
.wrapper h2{
  position: relative;
  font-size: 30px;
  font-weight: 100px;
  color: #333;
}
.wrapper h2::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 30px;
  width: 460px;
  border-radius: 45px;
  background: #4070f4;
}
.wrapper form{
  margin-top: 30px;
}
.wrapper form .input-box{
  height: 50px;
  margin: 10px 0;
}
form .input-box input{
  height: 70%;
  width: 100%;
  outline: none;
  padding: 0 1px;
  font-size: 1px;
  font-weight: 30;
  color: white;
  border: 1.5px solid white;
  border-bottom-width: 2.5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.form-select{
  height: 100%;
  width: 100%;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-weight: 400px;
  color: #333;
  border: 1.5px solid #C7BEBE;
  border-bottom-width: 2.5px;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.input-box input:focus,
.input-box input:valid{
  border-color: #4070f4;
}

form h3{
  color: white;
  font-size: 14px;
  font-weight: 520;
  margin-left: 10px;
}
.styled {
  border: 0;
  line-height: 2.5;
  padding: 0 30px;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  border-radius: 500px;
  background-color: rgb(77, 0, 220);
  background-image: linear-gradient(to top left,
                                    rgba(0, 0, 0, .2),
                                    rgba(0, 0, 0, .2) 30%,
                                    rgba(0, 0, 0, 0));
  box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
              inset -2px -2px 3px rgba(0, 0, 0, .6);
}

.styled:hover {
  
        background-color: rgb(80, 0, 280);
        }
             hr {
        border: 1px solid #07a9d7;
        width: auto;
        }

form .text h3{
 color: #333;
 width: 100%;
 text-align: center;
}
form .text h3 a{
  color: #4070f4;
  text-decoration: none;
}
form .text h3 a:hover{
  text-decoration: underline;
}
@media (max-width: 400px) {
  .wrapper img{
    width: 100%;
  }
  .form-container__subtitle{
    width: 100%;
  }
  .input-box{
    width: 100%;
  }
  .button{
    display: block;
  }
  form .text h3{
    width: 100%;
  }
}
@media (max-width: 768px) {
  .wrapper {
    padding: 20px;
  }
  .wrapper h2 {
    font-size: 25px;
  }
  .wrapper form {
    margin-top: 20px;
  }
  .input-box input {
    font-size: 16px;
  }
  .form-select {
    font-size: 16px;
  }
  form h3 {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding: 15px;
  }
  .wrapper h2 {
    font-size: 20px;
  }
  .wrapper form {
    margin-top: 15px;
  }
  .input-box input {
    font-size: 14px;
  }
  .form-select {
    font-size: 14px;
  }
  form h3 {
    font-size: 12px;
  }
}


