body {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background: url(../img/login-bg.jpg) no-repeat center;
  height: 100vh;
  background-size: 100% 100%;
}
body header {
  width: 100%;
  display: flex;
  align-items: center;
  height: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
body header img {
  margin-left: 120px;
}
body main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body main .login-container {
  width: 680px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
}
body main .login-container .menu {
  width: 170px;
  height: 100%;
  background-color: #2e5aa6;
  position: relative;
}
body main .login-container .menu a {
  display: block;
  height: 75px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  line-height: 75px;
}
body main .login-container .menu a.on {
  position: relative;
  font-weight: bold;
  background-color: #196ee5;
}
body main .login-container .menu a.on::after {
  content: "";
  display: block;
  border-style: solid;
  border-color: transparent;
  border-width: 8px 0 8px 10px;
  border-left-color: #196ee5;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
body main .login-container .form {
  height: 100%;
  flex: 1;
  padding-top: 45px;
}
body main .login-container .form ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}
body main .login-container .form ul li.vertical {
  margin: 0 auto;
  width: 315px;
  flex-direction: column;
}
body main .login-container .form ul li.vertical span {
  align-self: flex-end;
  margin-top: 10px;
  font-size: 14px;
  color: #00a0e9;
  cursor: pointer;
}
body main .login-container .form ul li input {
  height: 45px;
  border: 1px solid #e0e0e0;
  width: 250px;
  background-color: #f3fafd;
  border-radius: 5px;
  padding: 0 5px;
  font-size: 16px;
  margin-left: 10px;
}
body main .login-container .form ul li input::placeholder {
  font-size: 14px;
  color: lightgrey;
}
body main .login-container .form ul li input:focus {
  border: 1px solid #0037a8;
}
body main .login-container .form ul li img {
  margin-left: 10px;
  width: 119px;
  background-color: #000;
}
body main .login-container .form ul li a {
  width: 315px;
  height: 45px;
  background-color: #196ee5;
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 45px;
  border-radius: 5px;
  text-align: center;
  margin-top: 20px;
}
body footer {
  width: 100%;
  height: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 99px;
  color: white;
  background-color: rgba(0, 56, 170, 0.7);
}
body footer a {
  color: white;
}
/*# sourceMappingURL=login.css.map */