.welcome-page-top {
  width: 100%;
}
#page-container {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-y: auto;
  background-color: #d8eaf3;
}

#page-container .login-container {
  width: 100%;
  max-height: max-content;
  background-color: #fff;
  box-sizing: border-box;
  padding: 30px;
}

.login-container .btn {
  width: 100%;
  height: 45px;
}

.login-container a {
  color: #222;
}

.login-container a:hover {
  color: #334f65;
}

#content_welcome_page {
  max-width: 480px;
  width: 100%;
  display: flex;
  max-height: max-content;
}

#content_welcome_page #logo_container {
  text-align: center;
  margin: 0px auto 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

#content_welcome_page #logo_container img {
  text-align: center;
  display: flex;
}

#footer_container {
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  text-align: center;
  font-size: 90%;
  padding: 30px;
}
#welcome-footer {
  width: 100%;
}
#welcome-footer ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

#welcome-footer ul > li {
  list-style-type: none;
  display: inline-block;
  padding: 5px 10px;
}

#welcome-footer ul > li > a {
  color: #666;
}

.row {
  margin-left: 0px !important;
}

body {
  height: 100%;
  overflow-y: auto;
}

/** login form**/
#formWrapper {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
.darken-bg {
  background: rgba(0, 0, 0, 0.5) !important;
  transition: all 0.3s ease;
}

div.form-item {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
input {
  transition: all 0.2s ease;
}
input.form-style {
  color: #8a8a8a;
  display: block;
  width: 90%;
  height: 35px;
  padding: 5px 5%;
  border: 1px solid #ccc;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #fff;
  font-family: "HelveticaNeue", "Arial", sans-serif;
  font-size: 105%;
  letter-spacing: 0.8px;
}
div.form-item .form-style:focus {
  outline: none;
  border: 1px solid #58bff6;
  color: #58bff6;
}
div.form-item p.formLabel {
  position: absolute;
  left: 26px;
  top: 2px;
  transition: all 0.4s ease;
  color: #bbb;
}
.formTop {
  top: -22px !important;
  left: 26px;
  background-color: #fff;
  padding: 0 5px;
  font-size: 14px;
  color: #58bff6 !important;
}
.formStatus {
  color: #8a8a8a !important;
}
input[type="submit"].login {
  float: right;
  width: 112px;
  height: 40px;
  -moz-border-radius: 19px;
  -webkit-border-radius: 19px;
  border-radius: 19px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #55b1df;
  border: 1px solid #55b1df;
  border: none;
  color: #fff;
  font-weight: bold;
}
input[type="submit"].login:hover {
  background-color: #fff;
  border: 1px solid #55b1df;
  color: #55b1df;
  cursor: pointer;
}
input[type="submit"].login:focus {
  outline: none;
}
