.div {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 10%;
  flex-direction: column;
}

.box {
  font-family: "Work Sans", sans-serif;
  border-radius: 28px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 5% 0%;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  min-height: 200px;
  flex-direction: column;
}

.box.margin-bottom {
  margin-bottom: 5%;
}

.input-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

input {
  padding: 5% 10%;
  border-radius: 28px;
  font-size: 20px;
  outline-color: #116c5b;
}

.bottom-marge {
  margin-bottom: 2%;
}

.button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 5% 7.5%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 28px;
  background-color: #11d1ad;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  text-transform: uppercase;
}



.right-margin {
  margin-right: 5%;
}

@media only screen and (max-width: 480px) {
  .input-div {
    flex-direction: column;
  }

  .input {
      font-size: 12px;
  }

  .right-margin {
    margin-top:5%;
    margin-bottom: 5%;
    margin-right:0px;
    font-size: 18px;
  }
}

body{
  margin:0px;
}
