.page-container {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}

#logo{
  margin:0 auto 0 auto;
  width:150px;
}
#logo img{
  width:100%;
  margin:0 auto;
  display: block;
}

.infoBox {
  min-width: 320px;
  max-width: 400px;
  width:90%;
  background: #fff;
  border-style: solid;
  border-color: #cccccc;
  border-width: 1px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px #cccccc;
  padding: 50px;
}

.input-field {
  background:#fff;
  height: 50px;
  padding: 0 12px;
  display: block;
  width: 100%;
  font-size: 13px;
  color: #666666;
  line-height: 1.2;
  border: 1px solid #e6e6e6;
}
.input-field:not(:first-of-type) {
  border-top: 0;
}
.input-field:focus {
  outline: -webkit-focus-ring-color auto 1px;
}
.input-field:-webkit-autofill, .input-field:-webkit-autofill:hover, .input-field:-webkit-autofill:focus, .input-field:-webkit-autofill:active  {
  -webkit-box-shadow: 0 0 0 100px white inset !important;
}

.message {
  color: #c80000;
  padding-bottom: 20px;
}

#submitButton {
  margin-top: 20px;
  width: 100%;
  height: 50px;
  font-size: 13px;
  color: #fff;
}

.extra-info {
  text-align: center;
  color: #5e5e5e;
}