html,
body{
  height:100%;
  overflow:hidden;
}

.login-split{
  width:100%;
  height:100vh;
  display:flex;
  background:#fff;
}

.login-form-side{
  width:52%;
  min-width:520px;
  height:100vh;
  background:#fff;
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  clip-path:polygon(0 0, 88% 0, 100% 100%, 0% 100%);
}

.login-image-side{
  flex:1;
  height:100vh;
  background:url("../../img/login-bg.jpg") center/cover no-repeat;
  margin-left:-7%;
}

.login-box{
  width:380px;
  transform:translateX(-35px);
  display:flex;
  flex-direction:column;
  align-items:stretch;
}

.login-logo-img{
  width:75px;
  height:auto;
  object-fit:contain;
  margin:0 auto 30px auto;
}

.login-box h1{
  font-size:30px;
  font-weight:500;
  color:#111827;
  margin-bottom:34px;
  text-align:center;
}

.login-box form{
  display:flex;
  flex-direction:column;
}

.login-box label{
  font-size:13px;
  color:#111827;
  margin-bottom:20px;
  display:flex;
  flex-direction:column;
  gap:7px;
}

.login-box input{
  width:100%;
  height:42px;
  border-radius:7px;
  border:1px solid #cfd8e6;
  background:#edf3fc;
  padding:0 13px;
  color:#111827;
  outline:none;
  font-size:14px;
}

.login-box input:focus{
  border-color:#94a3b8;
  background:#f8fafc;
}

.login-box button{
  width:100%;
  height:44px;
  margin-top:8px;
  border-radius:8px;
  background:#111827;
  color:#fff;
  font-weight:800;
  letter-spacing:.4px;
}

.login-box button:hover{
  background:#1f2937;
}

.login-message{
  min-height:20px;
  margin-top:14px;
  color:#be123c;
  text-align:center;
  font-size:13px;
}

.login-version{
  display:block;
  margin-top:18px;
  text-align:center;
  color:#6b7280;
  font-size:12px;
}

@media(max-width:900px){
  html,
  body{
    overflow:auto;
  }

  .login-split{
    min-height:100vh;
    height:auto;
    display:block;
  }

  .login-form-side{
    width:100%;
    min-width:0;
    height:auto;
    min-height:100vh;
    clip-path:none;
    padding:40px 22px;
  }

  .login-image-side{
    display:none;
  }

  .login-box{
    width:100%;
    max-width:380px;
    transform:none;
  }
}



.password-input-wrap{
  position:relative;
  width:100%;
}

.password-input-wrap input{
  width:100%;
  padding-right:46px;
}

.password-toggle-btn{
  position:absolute;
  top:50%;
  right:10px;
  transform:translateY(-50%);
  border:none;
  cursor:pointer;
  font-size:15px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.login-box .password-toggle-btn{
  width:32px;
  height:32px;
  margin-top:0;
  border-radius:50%;
  background:transparent;
  color:#64748b;
  font-weight:400;
  letter-spacing:0;
}

.login-box .password-toggle-btn:hover{
  background:transparent;
  color:#111827;
}