html,
body {
  height: 100%;
}
.validation-summary {
  display: none;
}
.validation-summary-valid {
  display: none;
}
.validation-summary.validation-summary-errors {
  display: block;
}
body.credentials {
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #ced4da;
}

body.wiz {
   display: flex;
   -ms-flex-align: center;
   -ms-flex-pack: center;
   align-items: center;
   justify-content: center;
   padding-top: 40px;
   padding-bottom: 40px;
   background-color: #ced4da;
}
@media (max-height: 550px) {
   body.credentials {
      display: block;
      padding-top: 20px;
      padding-bottom: 20px;
   }
   footer.fixed-bottom {
      position: inherit;
   }
}

@media (max-width: 425px) {
   body.wiz {
      display: block;
      padding-top: 20px;
      padding-bottom: 20px;
   }
  footer.wiz-footer {
    position: inherit;
  }
}
@media (max-height: 610px) {
   body.wiz {
      display: block;
      padding-top: 20px;
      padding-bottom: 20px;
   }  

   footer.wiz-footer {
      position: inherit;
   }
}
.form-credentials {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  margin: 0 auto;
  background: #fff;
  text-align: left;
}
.form-credentials .banner {
  font-size: 1.5rem;
}
.form-credentials .checkbox {
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  position: relative;
  top: -1px;
}
.form-credentials .remember {
  margin-bottom: 5px;
}
.form-credentials input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-credentials input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-credentials .links {
  font-size: .8125rem;
}
.form-credentials button {
  width: 100%;
}

.form-wizard {
   width: 100%;
   max-width: 600px;
   height: 1000px;
   max-height: 460px;
   margin: 0 auto;
   background: #fff;
   text-align: left;
   border-style: solid;
   border-width: 2px;
}

.form-wizard-icon {
   margin: -32px auto 0 auto;
   padding: 0;
   width: 60px;
   height: 60px;
   border-style: solid;
   border-radius: 30px;
   border-width: 2px;
   font-size: 2em;
   text-align: center;
   background-color: white;
}

.form-wizard-banner {
   background-color: gainsboro;
   height: 55px;
   border-style: solid;
   border-width: 0px;
   border-bottom-width: 2px;
}

.form-wizard-body {
   height: 1000px;
   max-height: 300px;
   padding: 30px;
   padding-top: 10px;
}

.form-wizard-footer {
   padding: 10px 30px 10px 30px;
   margin: 0px 0 0 0;
}

.form-wizard .banner {
   font-size: 1.5rem;
}

.form-wizard .checkbox {
   width: 20px;
   height: 20px;
   vertical-align: bottom;
   position: relative;
   top: -1px;
}

.form-wizard .remember {
   margin-bottom: 5px;
}

.form-wizard input[type="email"] {
   margin-bottom: -1px;
   border-bottom-right-radius: 0;
   border-bottom-left-radius: 0;
}

.form-wizard input[type="password"] {
   margin-bottom: 10px;
   border-top-left-radius: 0;
   border-top-right-radius: 0;
}

.form-wizard .links {
   font-size: .8125rem;
}

.form-wizard button {
   width: 100%;
}

@media (max-width: 425px) {

   .form-wizard {
      max-height: 575px;
      padding: 0px;
   }

   .form-wizard-body {
      max-height: 415px;
      padding: 15px;
   }

   .form-wizard-footer {
      margin-top: 0px;
   }

   .fixed-bottom{
      position: fixed;
   }
}

