@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");
body {
  font-family: 'Poppins', sans-serif;
}

h1, p {
  text-align: center;
}

form {
  margin-top: 50px;
}

form label {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

form input, form textarea, form select {
  margin-top: 5px;
  margin-bottom: 15px;
  width: 100%;
  padding: .5em .5em;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  border: solid 2px #0002 !important;
  border-radius: 5px;
  -webkit-box-shadow: inset 2px 3px 6px 0px #0001;
          box-shadow: inset 2px 3px 6px 0px #0001;
}

form button {
  width: 100%;
  background: #3D94F6;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3D94F6), to(#1E62D0));
  background-image: linear-gradient(to bottom, #3D94F6, #1E62D0);
  border-radius: 10px;
  color: #FFFFFF;
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 15px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
  border: solid #337FED 1px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

form #processing {
  margin-top: 15px;
  opacity: 0.7;
  font-weight: 500;
}

form #failed {
  font-size: 12px;
  color: red;
  font-weight: 300;
}
/*# sourceMappingURL=style.css.map */