/*===================================
Start-Login-Css
===================================*/

.wc_login_form {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  color: var(--white);
}
.wc_login_form form {
  max-width: 510px;
  width: 100%;
  background-color: var(--purple-sage-bush);
  box-shadow: 0px 1px 2px 0px #1018280D;
  border-radius: 15px;
  padding: 40px;
}
.wc_login_form .wc_logo_title {
  text-align: center;
}
.wc_login_form .wc_logo_title span {
  font-family: var(--inter-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--titan-white);
}
.wc_login_form .wc_logo_title h5 {
  font-style: normal;
  font-size: 22px;
  line-height: 25px;
  text-align: center;
  margin-top: 20px;
  color: var(--white);
}
.wc_login_form .input-container {
  margin-top: 28px;
}
.custom-check-box {
  display: flex;
  align-items: center;
  color: var(--white);
  font-family: var(--space-grotesk-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.custom-check-box input {
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
}
.custom-check-box input:checked + span {
  background-color: var(--titan-white);
}
.custom-check-box span {
  max-width: 20px;
  min-width: 20px;
  width: 100%;
  height: 20px;
  border: 1px solid var(--titan-white);
  border-radius: 4px;
  margin-right: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.custom-check-box span svg {
  display: none;
  color: var(--purple-sage-bush);
}
.custom-check-box input:checked + span svg {
  display: block;
}
.user_remember .custom-check-box {
  margin-top: 10px;
}
form .password-cover {
  position: relative;
}
.eye_password_tg {
  display: flex;
  position: absolute;
  top: 8px;
  right: 20px;
  cursor: pointer;
}
.eye_password_tg svg {
  width: 18px;
  color: var(--purple-sage-bush);
}
.eye_password_tg .eye_view {
  display: none;
  padding: 1px;
  box-sizing: border-box;
}
.eye_password_tg.show .eye_slash {
  display: none;
}
.eye_password_tg.show .eye_view {
  display: block;
}
.login-custom-form .btn.btn-secondary:hover {
  color: var(--white);
  background: var(--purple-sage-bush);
  border-color: var(--white);
}

@media (max-width: 767px) {
  .wc_login_form form {
    padding: 20px;
  }
  .wc_login_form .wc_logo_title h5 {
    font-size: 18px;
    margin-top: 10px;
  }
}

/*===================================
Close-Login-Css
===================================*/