.login {
  background: #fffaf5;
  height: 100vh;
  padding: 116px 0;
}
.login .loginSection {
  display: flex;
  justify-content: center;
  max-width: 916px;
  margin: auto;
  min-height: 538px;
}
.login .logo {
  width: 100px;
  height: 100px;
}
.login .loginImg {
  /* height: 538px; */
  flex-basis: 47.6%;
  overflow: hidden;
}
.loginImg img {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.login .loginForm {
  background: #ffffff;
  box-shadow: 0px 0px 40px rgba(0, 0, 32, 0.05);
  padding: 40px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  flex-basis: 52.5%;
}
.loginForm h4 {
  font-weight: 500;
  font-size: 32px;
  line-height: 38px;
  color: #0b1128;
  padding: 40px 0;
}
.login form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 400px;
}
form .formInput {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
form .commonBtn {
  border-radius: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  min-height: 40px;
  height: 40px;
  cursor: pointer;
  margin-top: 8px;
}
form .formInput input {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 12px 16px;
  min-height: 44px;
}
form .formInput input:focus-visible {
  outline: 1px solid #4e587e;
}
.formInput input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
form .formInput label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #0b1128;
  display: flex;
  justify-content: space-between;
}
.formInput label span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #379cf6;
  cursor: pointer;
}
.forgotPassword {
  display: none;
}
.passInput input {
  width: 100%;
}
.passInput {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.userInput {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.userInput input {
  width: 100%;
}
.passEye {
  position: absolute;
  right: 16px;
  top: 10px;
  cursor: pointer;
  max-width: 24px;
  height: 24px;
}
.active {
  display: none;
}
.errorMsg {
  color: #ff0000;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  position: absolute;
  bottom: -16px;
}

@media (max-width: 992px) {
  .login .loginSection {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .login .loginImg {
    display: none;
  }
  .login .loginSection {
    height: 100%;
    align-items: center;
  }
  .login .logo {
    text-align: center;
    max-width: 64px;
    height: 64px;
    margin: auto;
  }
  .loginForm h4 {
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    padding: 24px 0;
  }
  .login form {
    max-width: 100%;
    gap: 20px;
  }
  .login .loginForm {
    padding: 24px;
    border-radius: 8px;
    flex-basis: 100%;
    max-width: 480px;
  }
  form .formInput label {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
  }
  .formInput label span {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
  }
}
