* {
  margin: 0;
  padding: 0;
}

body {
  color: #3e5569;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  line-height: 22px;
  background-color: #333d54;
}

/*---- Remove Blue Background ----*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}
/*---- End of Remove Blue Background ----*/

.container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.container-login {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 30px 30px 35px 30px;
  width: 340px;
  background-color: #fff;
  border-radius: 6px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.container-login .logo {
  position: absolute;
  top: -110px;
  left: 50%;
  width: 80px;
  height: auto;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.container-login h1 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  line-height: 34px;
}
.container-login .form-control {
  padding: 12px 15px;
  color: #3e5569;
  font-size: 16px;
  line-height: 22px;
  border: 1px solid #cacaca;
  box-shadow: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.container-login .form-control:focus {
  border-color: #2585e4;
}
.container-login .form-control[disabled] {
  background-color: #e9ecef;
}
.container-login .container-password {
  position: relative;
}
.container-login .container-password .form-control {
  padding-right: 45px;
}
.container-login .container-password .fa {
  position: absolute;
  top: 50%;
  right: 15px;
  cursor: pointer;
  font-size: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.container-login .container-password .fa[disabled] {
  cursor: default;
}
.container-login .btn {
  padding: 8px 10px;
  width: 100%;
  height: 48px;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  background-color: #4798e8;
  border: 1px solid #4798e8;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.container-login .btn:hover {
  background-color: #2585e4;
}
.container-login .btn .fa {
  font-size: 28px;
}
.container-login .form-validation {
  display: none;
  margin-top: 10px;
  color: #ef6e6e;
  font-size: 14px;
  text-align: center;
}
.container-login .form-validation.shown {
  display: block;
}
.container-login .copyright {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  color: #cacaca;
  font-size: 14px;
  text-align: center;
}


@media only screen and (max-width: 767px) {

}
