.main-login {
  width: 100%;
  height: 100vh;
  background: url(../images/zsy-loginbg1.png);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  position: relative;
}
.main-login .header {
  padding: 15px 20px;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.149);
  display: flex;
  align-items: center;
}
.main-login .footer {
  padding: 20px;
  text-align: center;
  color: #fff;
  line-height: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-login .footer .imgx {
  padding: 0 20px;
}
.main-login .footer .text-cent {
  position: relative;
  z-index: 100;
  max-width: 80%;
}
.main-login .footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}
.main-login .login-cen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* flex-direction: row-reverse; */
  position: relative;
}

.login-form {
  position: relative;
  margin-bottom: -170px;
}
.login-form .pos-form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px 95px 160px 95px;
}
.login-form .pos-form .tle {
  text-align: center;
  font-size: 40px;
  color: rgb(255, 255, 255);
  background-image: linear-gradient(to bottom, #00eefe, #00eefe, #1594e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  line-height: 1.5;
}
.login-form .pos-form .tle span {
  margin: 0 5px;
}
.login-form .pos-form .input-kuang {
  padding: 25px 50px;
}
.login-form .pos-form .inp {
  position: relative;
  margin: 20px 0 35px;
}
.login-form .pos-form .inp label {
  display: block;
  position: relative;
  --focusColor: #fff;
}
.login-form .pos-form .inp label > span {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 60px;
  height: 32px;
  padding: 1px 0;
  text-align: center;
  transform: translateY(-50%);
  border-right: 1px solid #55e2fc;
}
.login-form .pos-form .inp label > span img {
  height: 100%;
}
.login-form .pos-form .inp label input {
  width: 100%;
  height: 60px;
  padding: 10px 20px 10px 80px;
  outline: 0;
  font-size: 16px;
  border: 1px solid #00ccff;
  background-color: transparent;
  font-weight: bold;
  color: #00ccff;
  border-radius: 5px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  background: url(../images/zsy-logininp.png);
}
.login-form .pos-form .inp label input::-moz-placeholder {
  color: #55e2fc;
  font-weight: normal;
}
.login-form .pos-form .inp label input:-ms-input-placeholder {
  color: #55e2fc;
  font-weight: normal;
}
.login-form .pos-form .inp label input::placeholder {
  color: #55e2fc;
  font-weight: normal;
}
.login-form .pos-form .inp label input:focus {
  border-color: var(--focusColor);
  color: var(--focusColor);
}
.login-form .pos-form .inp label input:focus::-moz-placeholder {
  color: var(--focusColor);
}
.login-form .pos-form .inp label input:focus:-ms-input-placeholder {
  color: var(--focusColor);
}
.login-form .pos-form .inp label input:focus::placeholder {
  color: var(--focusColor);
}
.login-form .pos-form .inp label input:focus + span {
  border-color: var(--focusColor);
}
.login-form .pos-form .inp label input:focus + span img {
  filter: grayscale(1) brightness(100);
}
.login-form .pos-form .form-btn {
  background: #00ccff;
  width: 200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 10px;
  color: #06244b;
  cursor: pointer;
  font-size: 24px;
  line-height: 50px;
  border-radius: 25px;
  margin-top: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.login-form .pos-form .form-btn:hover {
  background-color: #51dafc;
}

@media screen and (max-width: 768px) {
  body {
    overflow-y: hidden;
  }

  .main-login {
    min-width: 768px;
  }
}