
html,body{
  padding: 0;
  margin: 0;
}
.login-layout {
  min-height: 100vh;
  display: flex;
}
.login-layout .login-left {
  position: relative;
  background-color: #437CFF;
  flex: 1;
}
.login-layout .login-left .login-left-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.login-layout .login-left .hh-login {
  height: 21px;
  position: absolute;
  bottom: 24px;
  left: calc(50% - 53px);
}
.login-layout .login-right {
  flex: 1;
  background-color: #FDFDFD;
  padding: 24px 12px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.login-layout .login-right .right-content {
  flex: 1;
  margin-top: 56px;
  padding-bottom: 24px;
}
.login-layout .login-right .right-content .right-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #000;
  margin-bottom: 16px;
}
.login-layout .login-right .right-content .login-content {
  text-align: center;
  font-size: 14px;
}
.login-layout .login-right .right-fotter {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-align: center;
  color: #727272;
}
.other-login {
  margin: 40px 0 16px;
}
.other-login .other-login-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.other-login .other-login-btns .el-button {
  margin: 0;
  color: #333;
}
.login-botton{
  margin: 0 auto;
  width: 320px;
  color: #333;
  border-radius: 4px;
  padding: 12px 19px;
  background-color: #fff;
  border: 1px solid #dcdfe6;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
}
.login-botton:hover{
  background-color: #EBF4FF!important;
  border-color: #437CFF!important;
  outline: none;
}
.login-content-footer a{
  color: #437CFF;
  text-decoration: none;
  margin-right: 8px;
}