html,
body {
  height: 100%;
}

.login-layout {
  width: 100vw;
}

.login-wrap {
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.login-wrap-left, .login-wrap-right {
  width: 50%;
  padding: 30px;
  position: relative;
}

.login-wrap-left {
  background: #242D40;
}

.login-wrap-left .login-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 60px);
}

.login-wrap-left .login-box p {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #fff;
}

.login-wrap-left .login-box__logo {
  width: 350px;
}

.login-wrap-right {
  background: #fff;
  padding-top: 20px;
}

.login-wrap-right .login-logo {
  display: none;
}

.login-wrap-right .form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.login-wrap-right .form-wrap .login-form {
  max-width: 380px;
  width: 100%;
}

.login-wrap-right .form-wrap .login-form__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 22px;
}

.login-wrap-right .form-wrap .login-form .el-form {
  padding: 20px;
  width: 100%;
}

.login-btn {
  margin-top: 20px;
  width: 100%;
}

.alert {
  top: 10px;
  z-index: 999;
  left: 0%;
  padding: 12px 16px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  transition: opacity 0.5s;
}



@media screen and (max-width: 1024px) {
  .login-wrap .login-wrap-left {
    display: none;
  }

  .login-wrap .login-wrap-right {
    background: #242D40;
    width: 100%;
    padding: 0;
  }

  .login-wrap .login-wrap-right .login-logo {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .login-wrap-right .form-wrap .login-form {
    width: 100%;
  }

  .login-form__inner {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 380px;
    width: 100%;
  }

  .login-form__title {
    display: none;
  }
}