.emp-login-container {
  display: flex;
  background-color: #e4def2;
  min-height: 700px;
  gap: 5px;
}

.emp-login-image {
  width: 50%;
  height: 100%;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.emp-login-image p {
  margin: 0;
  margin-left: 315px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  align-self: center;
  text-align: center;
}

.emp-login-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin-left: 315px;
}

.emp-login-box {
  width: 50%;
  height: 100%;
  margin: auto 0;
  position: relative;
}

.emp-login-form {
  width: 526px;
  height: 383px;
  background-color: #ffffff;
  border-radius: 10px;
  position: absolute;
  right: 315px;
  top: 50%;
  transform: translateY(-50%);
}

.emp-login-header {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #451da0;
  min-height: 57px;
  padding: 5px 20px;
  border-bottom: 1px solid #a4a4a4;
}

.emp-login-header span {
  margin: auto;
}

.input-emp-tk,
.input-emp-pass {
  display: flex;
  align-items: center;
  background-color: #e4def2;
  height: 46px;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  gap: 5px;
}

.input-emp-tk img,
.input-emp-pass img {
  width: 24px;
  height: 24px;
  margin-left: 12px;
}

.input-emp-tk input,
.input-emp-pass input {
  border: none;
  outline: none;
  background: none;
  width: 100%;
  font-size: 16px;
}

.emp-forgot-password {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
}

.emp-forgot-password span {
  cursor: pointer;
}

.btn-login {
  width: 576px;
  height: 63px;
  background-color: #ffffff;
  color: white;
  font-size: 24px;
  text-align: center;
  position: relative;
  margin-top: 20px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.btn-login .btnloginuv {
  width: 100%;
  height: 51px;
  background-color: #4e2a84;
  color: white;
  font-size: 24px;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 2;
}

.btn-login img {
  position: absolute;
  background-color: #e4def2;
  width: 26px;
  height: 30px;
  bottom: 0;
  z-index: 1;
}

.btn-login img:first-child {
  left: 0;
}

.btn-login img:last-child {
  right: 0;
}

.emp-register {
  text-align: center;
  margin-top: 15px;
}

.emp-register span {
  font-size: 16px;
  font-weight: 400;
}

.emp-register a {
  color: #4e2a84;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.border-box-login {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 20px 0px 20px;
}

.border-input-account,.border-input-password {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.emp-login-form .show_hide_pass {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.emp-login-header .title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
}

.h2login {
  font-size: 14px;
  font-weight: bold;
}

.register_text {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #451da0;
  display: inline-block;
}

@media (min-width: 1024px) and (max-width: 1280px) {

  .emp-login-image img,
  .emp-login-image p {
    margin-left: 28px;
  }

  .emp-login-form {
    right: 28px;
  }
}

@media (min-width: 1281px) and (max-width: 1440px) {

  .emp-login-image img,
  .emp-login-image p {
    margin-left: 150px;
  }

  .emp-login-form {
    right: 150px;
  }
}

@media (min-width: 1441px) and (max-width: 1600px) {

  .emp-login-image img,
  .emp-login-image p {
    margin-left: 200px;
  }

  .emp-login-form {
    right: 200px;
  }
}

@media (min-width: 1601px) and (max-width: 1920px) {
  .emp-login-image img {
    margin-left: 315px;
  }

  .emp-login-form {
    right: 315px;
  }
}

@media (max-width: 1024px) {
  .emp-login-image {
    display: none;
  }

  .emp-login-box {
    width: 100%;
    height: 100%;
  }

  .emp-login-form {
    max-width: 620px;
    width: 80%;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
  }

  .btn-login {
    width: calc(100% + 50px);
  }

  .btn-login button {
    width: 100%;
  }
}

@media (max-width: 736px) {
  .emp-login-image {
    display: none;
  }

  .emp-login-box {
    width: 100%;
    height: 100%;
  }

  .emp-login-form {
    width: 95%;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
  }

  .btn-login {
    width: 100%;
  }

  .btn-login button {
    width: 100%;
  }

  .btn-login img {
    background-color: #ffffff;
  }
}