body {
  font-family: "Helvetica Neue LT Std";
  font-weight: 400;
  font-size: 16px;
  margin: 0 !important;
  color: #000000;
  overflow-x: hidden;
  background-color: #fff;
}
.container {
  max-width: 1240px;
  padding-left: 12px;
  padding-right: 12px;
}
.loginTitle {
  font-size: 60px;
  font-weight: 500;
  max-width: 450px;
}
.cst_checkbox {
  padding-left: 32px;
  position: relative;
  margin-bottom: 0 !important;
  cursor: pointer;
}
.cst_checkbox .checkmark {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid #7b858c;
  position: absolute;
  left: 0;
  top: 2px;
}
.cst_checkbox input[type=checkbox] {
  display: none !important;
}
.cst_checkbox input:checked + .checkmark {
  background: url("assets/svg/checkbox.svg") no-repeat center;
  border: 1.45px solid #000;
  background-size: 14px;
  background-size: 20px;
}
.cst_checkbox input[type=radio] {
  display: none !important;
}
.cst_checkbox input[type=radio] + .checkmark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #7b858c;
  position: absolute;
  left: 0;
  top: 2px;
}
.cst_checkbox input[type=radio]:checked + .checkmark {
  background: url("assets/svg/radio-circle.svg") no-repeat center;
  background-size: 12px;
  background-position: center;
  border: 1px solid #000;
}
.cst_checkbox input:disabled + .checkmark {
  cursor: not-allowed;
  background: #f1f1f1;
  border-color: red !important;
}
.formWrap {
  background: url("/Content/assets/images/login-bg-card.svg") no-repeat;
  background-size: 100% 100%;
  padding: 55px 15px 43px;
  border-radius: 12px;
  max-width: 621px;
  width: 100%;
}

.login_form {
  max-width: 488px;
  width: 100%;
  color: #000;
}
.login_form label.label-control {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 16px;
}
.login_form .title {
  font-size: 40px;
  font-weight: 500;
}
.login_form hr {
  border-color: #7B858C !important;
  opacity: 1 !important;
}

.register_btn, .forgot_link {
  font-size: 16px;
  color: #7B858C;
  font-weight: 500;
  text-decoration: none !important;
}

.cst_checkbox {
  min-height: 20px;
  font-size: 15px !important;
  color: #000;
  font-weight: 500;
}
.cst_checkbox .checkmark {
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

input.form-control {
  font-size: 18px;
}

.login_form .welcomeMsg {
  font-size: 18px;
  color: #000;
  font-weight: 400;
}
.login_form .title {
  font-size: 36px;
  margin-bottom: 24px;
}
.login_form label {
  font-size: 14px;
  margin-bottom: 6px;
}
.login_form input {
  height: 44px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #7B858C !important;
  box-shadow: none !important;
  outline: none !important;
}
.login_form input::placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.login_form input::-ms-input-placeholder {
  color: #b8b8b8;
}
.login_form .input_icon img {
  position: absolute;
  left: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  width: 16px;
  height: auto;
}
.login_form .input_icon img + input {
  padding-left: 60px;
}
.login_form .reset_link {
  color: rgb(0, 0, 0);
  font-size: 16px;
  text-decoration: none;
}
.login_form .btn_solid {
  height: 44px;
}

.loginHeder {
  min-height: 100vh;
  padding: 80px 0;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat;
}
.btn_black,
.btn_solid {
  background: #000000 !important;
  padding: 5px 20px;
  height: 48px;
  border: 1px solid #000000 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  img {
    width: 20px;
    height: auto;
    margin-left: 8px;
  }
  .anim_arrow {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  &:hover {
    .anim_arrow {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
}
@media (max-width: 991px) {
  .loginHeder {
    padding: 100px 0 30px;
  }
  .loginTitle {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .loginHeder {
    padding: 70px 0 20px;
  }
  .loginTitle {
    font-size: 32px;
  }
  .formWrap {
    padding: 30px 15px;
  }
  .login_form .title {
    font-size: 30px;
  }
  .login_form {
    max-width: 304px;
  }
}