body {
  min-height: 100vh;
  padding: 10px;
  font-family: Helvetica, Arial, sans-serif;
  color: white;
  background-image: linear-gradient(#666, #222);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: flex-start;
}
body .body-container {
  -ms-flex-positive: 1;
      flex-grow: 1;
  max-width: 800px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
body .body-container .logo {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  height: 100px;
  background: url('/img/tmw-logo.png') no-repeat center center;
  background-size: contain;
}
body .body-container h1 {
  font-size: 1.5em;
}
body .body-container form {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
body .body-container form input,
body .body-container form textarea {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 8px;
  margin-bottom: 15px;
  color: black;
  font-size: 16px;
  background: white;
  outline: none;
  border: none;
  border-radius: 3px;
}
body .body-container form textarea {
  height: 50px;
}
body .body-container form label {
  margin-bottom: 10px;
}
body .body-container form input[type=submit] {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-image: linear-gradient(#fceda7, #fadb4e);
}
