html, body {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: relative;
  }

#wrapper {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  }

.innerWrap {
  text-align: center;
  margin-top: -45%;
  padding: 20px;
  }

h1 {
  font-size: 18px;
  font-weight: normal;
  color: white;
  background: #3D6698;
  line-height: 40px;
  margin: 0;
  }

input {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 20px auto;
  height: 35px;
  font-size: 16px;
  border: 1px solid #EBEBEB;
  box-shadow: none;
  border-radius: 10px;
  padding: 0 20px;
  text-align: center;
  outline: none;
  }

#login {
  color: white;
  width: 100%;
  }

.loginPage {
  max-width: 405px;
  border-radius: 25px;
  overflow: hidden;
  background: #e6e9ed;
  margin: 0 auto;
  }

.loginPage form {
  padding: 20px 60px;
  }

.loginPage form input:first-child {
  margin-top: 0;
  }

@media screen and (max-height: 700px) {
  .innerWrap {
    margin-top: 0;
    }
  }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .innerWrap {
    margin-top: -20%;
    }
  }

.formError {
  color: #DB4453;
  }