html {
  height: 100%;
  width: 100%;
}
body {
  background-image: url("../images/login-bg.jpg");
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  flex-direction: row;
  height: 100%;
}
.title {
  font-size: 42px;
  color: #fff;
  position: absolute;
  top: 40px;
  left: 60px;
  font-family: "宋体";
  font-weight: bold;
}
.login {
  width: 464px;
  height: 520px;
  background: rgba(125, 129, 255, 0.14);
  box-shadow: 0px 3px 16px rgba(3, 15, 46, 0.1);
  opacity: 1;
  margin-left: 60%;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-title {
  height: 138px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 41px;
  color: #ffffff;
  padding-top: 45px;
}
.login .input {
  width: 404px;
  background: #374c94;
  border: 1px solid #568fee;
  opacity: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 30px;
  overflow: hidden;
}
.login .input input {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  padding: 20px 0px 20px 10px;
  width: 100%;
}
.login .input input::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
.login .input.code {
  display: flex;
}
.login .input.code .code-img {
  width: 150px;
  height: 58px;
  background-color: #fff;
  margin-right: -20px;
}
.login-btn {
  margin-top: 48px;
  width: 404px;
  height: 58px;
  background: #5473e8;
  opacity: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
