html, body {
  border: 0;
  padding: 0;
  margin: 0;
  height: 100%;
}

body {
  font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
  /*background: #3f51b5;*/
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

form {
  background: white;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
  font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
  position: relative;
  color: #333;
  border-radius: 10px;
  padding:24px;
}

form header {
  background: white;
  padding: 8px;
  color: steelblue;
  font-size: 1.2em;
  font-weight: 400;
  border-bottom: 1px solid steelblue;
  margin-bottom:20px;
}
form label {
  margin-left: 20px;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 5px;
  position: relative;
}
form label span {
  color: #FF3838;
  font-size: 1.3em;
  position: absolute;
  left: 3em;
  top: -4px;
}
form input, form select {
  display: block;
  padding: 5px 20px;
  font-size: 1em;
  border-radius: 3px;
  outline: none;
  border: 1px solid #ccc;
}

form .help {
  margin-left: 20px;
  font-size: 0.8em;
  color: #777;
}
form button {
  position: relative;
  font-family: inherit;
  color: white;
  background: #3f51b5;
  outline: none;
  border: none;
  padding: 15px;
  font-size: 1.1em;
  font-weight: 300;
  border-radius: 3px;
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  width:100%;
}
form button:hover {
  background: steelblue;
}