html, body {
  border: 0;
  padding: 0;
  margin: 0;
  height: 100%;
}

body {
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: lato;
   margin: 0 auto;
}

form {
  background: white;
  width: 40%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
  border: 1px solid #E5E5E5;
  font-weight:bold;
  position: relative;
  color: #006AB8;
  border-radius: 10px;
}
.tt_am {
  background: #006AB8 !important;
  padding: 30px 20px;
  color: white;
  font-size: 1.8em;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
}
form label {
  margin-left: 20px;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 5px;
  position: relative;
  text-transform:uppercase;
}
form label span {
  color: red;
  font-size: 1.2em;
 
}
form input {
  display: block;
  width: 78%;
  margin-left: 20px;
  padding: 5px 20px;
  font-size: 1em;
  border-radius: 3px;
  outline: none;
  border: 1px solid #ccc;
  color:#017DC3;
  
}
form select {
  display: block;
  width: 86%;
  margin-left: 20px;
  padding: 5px 20px;
  font-size: 15px;
  border-radius: 3px;
  outline: none;
  border: 1px solid #ccc;
  color:#017DC3;
  
}
form .help {
  margin-left: 20px;
  font-size: 0.8em;
  color: #777;
}
form button {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  left: 45%;
  transform: translate(-45%, 0);

  color: white;
  background: #006AB8;
  outline: none;
  border: none;
  padding: 5px 30px;
  font-size: 1.3em;
  font-weight: 400;
  border-radius: 3px;
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
form button:hover {
  background: #017DC3;
}
