* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
}

body {
  background: linear-gradient(130deg, #3CB895, #A0E8AF);
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form {
  background-color: white;
  padding: 4rem 6.7rem;
  width: 70rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #407471;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

form .form-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

form .form-group .email {
  width: 100%;
}

form .form-group .telefone {
  width: 40%;
}

form .form-group .form-field:not(:last-child) {
  margin-right: 2rem;
}

form .form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.6rem;
}

form .form-field label {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}

form .form-field input {
  border: none;
  outline: none;
  border-radius: 1rem;
  background-color: #E9E9E9;
  width: 100%;
  height: 4.6rem;
  padding: 1.6rem;
}

form .form-field select {
  height: 5rem;
  padding: 1.6rem;
  color: #407471;
  border: 1px solid #407471;
  -webkit-box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}

form button {
  display: inline-block;
  border: none;
  background: linear-gradient(130deg, #3CB895, #A0E8AF);
  color: #065143;
  font-weight: bold;
  font-size: 1.3rem;
  height: 5.3rem;
  width: 10.5rem;
  cursor: pointer;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

form button:hover {
  background: linear-gradient(-50deg, #3CB895, #A0E8AF);
}

/* MEDIA QUERY */
@media screen and (max-width: 600px) {
  form {
    width: 50rem;
  }
  form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  form .form-group .telefone {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  form {
    width: 40rem;
    padding: 4rem 5rem;
  }
  form .form-title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 500px) {
  form {
    width: 35rem;
  }
}
/*# sourceMappingURL=styles.css.map */