.text-primary {
  color: #01B871 !important;
}

body {
  background: none !important;
}

::-ms-reveal {
  display: none;
}

.form-icon {
  outline: none !important;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: #CECECE;
  cursor: pointer;
}
html[dir=rtl] .form-icon {
  right: auto;
  left: 22px;
}

.login_part {
  min-height: 100vh;
  background-image: url(../img/login_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .login_part {
    padding: 50px 0;
  }
}
.login_part .hight_100 {
  min-height: 100vh;
}
.login_part .login_form {
  padding: 53px 60px;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .login_part .login_form {
    padding: 35px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .login_part .login_form {
    padding: 35px 25px;
    margin: 50px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .login_part .login_form {
    margin: 50px 0;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .login_part .login_form {
    padding: 45px 40px;
    margin: 75px 0;
  }
}
.login_part .login_form h3 {
  font-size: 21px;
  line-height: 30px;
  margin-bottom: 25px;
  font-weight: 600;
}
.login_part .login_form_item {
  margin-top: 20px;
}
.login_part .login_form_item label {
  display: block;
  font-size: 16px;
  color: #37413B;
  font-weight: 500;
}
.login_part .login_form_item input,
.login_part .login_form_item textarea {
  background-color: #f5f6fa;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  color: #37413B;
  display: block;
  padding: 16px 25px;
  width: 100%;
  line-height: 16px;
  outline: none;
  font-weight: 400;
  resize: none;
}
.login_part .login_form_item input.is-invalid,
.login_part .login_form_item textarea.is-invalid {
  border-color: #dc3545;
}
.login_part .logo img {
  max-width: 100%;
}

.login_check_box {
  margin: 22px 0 14px;
}
.login_check_box a {
  font-size: 14px;
  color: #8C9098;
  font-weight: 300;
}

.login_form p {
  margin-top: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.login_form p a {
  color: #37413B;
  text-decoration: underline;
}

.invalid-feedback {
  font-weight: 300;
}

.primary-btn {
  display: inline-block;
  color: #ffffff !important;
  text-decoration: none !important;
  background-color: #01B871;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  padding: 15px 47px;
  outline: none !important;
  text-align: center;
  cursor: pointer;
  text-transform: capitalize;
  border: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 100px;
}
.primary-btn:hover {
  background-color: #37413B;
}
.primary-checkbox {
  --width: 16px;
  display: inline-block;
  position: relative;
  width: var(--width);
  height: var(--width);
  margin: 0;
  flex: 0 0 auto;
}
.primary-checkbox .checkmark {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  cursor: pointer;
  border-radius: 4px;
}
.primary-checkbox input:checked ~ .checkmark:after {
  width: 100%;
  height: 100%;
  border: 0;
  transition: 0.3s;
  transform: scale(0);
}
.primary-checkbox input:checked ~ .checkmark {
  background-color: #01B871;
  transition: 0.3s;
}
.primary-checkbox input:checked ~ .checkmark::before {
  content: "\e64c";
  font-family: "themify";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  font-size: 10px;
  font-weight: 600;
  z-index: 99;
  color: #fff;
  transition: 0.3s;
  transform: translate(-50%, -50%);
}
.primary-checkbox .checkmark:after {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 4px;
  border: 1px solid #6F758B;
  transition: 0.3s;
  transform: scale(1);
}

.bg-img-none {
  background-image: none !important;
}

.login_form_org_selector input {
  display: none !important;
}
.login_form_org_selector label {
  background: #F5F6FA;
  border: 1px solid #DAD3D3;
  border-radius: 2px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.87;
  color: #2C2C2E;
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 44px;
  padding-right: 9px;
  position: relative;
  cursor: pointer;
}
.login_form_org_selector label::before {
  content: "";
  height: 22px;
  width: 22px;
  border: 0.5px solid rgba(0, 0, 0, 0.7490196078);
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
}
.login_form_org_selector label::after {
  content: "";
  height: 14px;
  width: 14px;
  background: #EBE1E1;
  border-radius: 50%;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
html[dir=rtl] .login_form_org_selector label {
  padding-left: 9px;
  padding-right: 44px;
}
.login_form_org_selector label:not(:last-child) {
  margin-bottom: 20px;
}
.login_form_org_selector input:checked + label {
  background: #01B871;
  border-color: #01B871;
  color: #ffffff;
}
.login_form_org_selector input:checked + label::after {
  background: #01B871;
}