.login__section {
  width: 100%;
  height: 100vh;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.login_form {
  text-align: center;
  padding: 0 50px;
}
.login__logo {
  width: 230px;
  height: auto;
  margin: 0 auto 35px;
}
.login__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.login_form h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 15px;
}
.login_form p {
  font-size: 14px;
  font-weight: 500;
}
.login_form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 40px 0 20px;
}
.login_form form .form_input {
  width: 100%;
  background: #fff;
  position: relative;
}

.login_form form .form_input img {
  position: absolute;
  left: 10px;
  top: 15px;
}
.login_form form .form_input .form-control {
  width: 100%;
  height: 50px;
  box-shadow: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 10px 10px 40px;
  border: 1.5px solid #e0e2e9;
  border-radius: 5px;
  background: #fff;
}
.login_form form .form_input .form-control:focus-within {
  border: 1px solid var(--sapa-blue);
}
.login_form form .form_input .error {
  display: block;
  text-align: left;
}
.login_form form .btn_forgot {
  background: transparent;
  font-weight: 600;
  margin: 0px 0 15px;
  color: #229DF5;
}
.login_form form .btn_submit {
  background: var(--sapa-navy);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 5px 0 10px;
}
.login_form .go_back {
  color: #a4a4a4;
  font-style: 14px;
  font-weight: 500;
  text-decoration: none;
}
/***************/

.login__section::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-size: cover;
  right: 0;
  top: 0;
  z-index: -1;
}

.login__section.vet_login::before {
  background: url("../images/vet_login_bg.png") no-repeat;
  background-size: cover;
}

.login__section.frontdesk_login::before {
  background: url("../images/manager-login-bg.png") no-repeat;
  background-size: cover;
}

.login__section.billing_login::before {
  background: url("../images/billing_login_bg.png") no-repeat;
  background-size: cover;
}
.login__banner {
  width: 100%;
  height: 100%;
}

.login__banner_img {
  width: 430px;
  height: 375px;
  overflow: hidden;
  margin: 0 auto;
}

.login__banner_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.login__banner h6 {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0 10px;
}
.login__banner p {
  color: #fff;
  text-align: center;
  margin: 15px 0 0;
  font-size: 14px;
  font-weight: 500;
}
/**************/

.forget-password{
  display: flex;
  margin-left: auto;
  text-decoration: none;
}

@media only screen and (min-width: 1500px) {
  .login_form {
    width: 500px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  .login__section {
    height: 100%;
    padding: 20px;
  }
  .login__section::before {
    width: 100%;
    height: 430px;
    top: unset;
    bottom: 0;
  }
  .login_form {
    padding: 0;
  }
  .login__banner {
    margin: 60px 0 0;
  }
  .login__banner_img {
    width: 95%;
    height: auto;
  }
  .login__section.vet_login::before, .login__bg{
	  display:none;
  }
  .login__section.frontdesk_login::before, .login__section.billing_login::before{
	display:none;
}

}


@media only screen and (max-width: 575px) {
	
	
.login__section.frontdesk_login::before, .login__section.billing_login::before{
	display:none;
}

	
}