@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
label,
select,
input[type=number] {
  font-family: "Poppins", sans-serif;
}

.d_flex {
  display: flex;
}

.fd_c {
  flex-direction: column;
}

.ai_c {
  align-items: center;
}

.ai_s {
  align-items: start;
}

.ai_e {
  align-items: end;
}

.jc_c {
  justify-content: center;
}

.jc_s {
  justify-content: start;
}

.jc_sb {
  justify-content: space-between;
}

.jc_e {
  justify-content: end;
}

.btn_brand {
  background: #06514F;
  height: 40px;
  padding: 9px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border: 1px solid #06514F;
  border-radius: 8px;
  font-size: 14px;
}
.btn_brand:hover {
  background: #043937;
  color: white;
}

button {
  transition: 0.5s ease;
}
button:hover {
  transition: 0.5s ease;
}

.heading {
  color: #032928;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 60px 0 16px;
}

.text {
  color: #475467;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  margin: 0;
}

.h_100vh {
  height: 100vh;
}

.w_10 {
  width: 10%;
}

.w_20 {
  width: 20%;
}

.w_30 {
  width: 30%;
}

.w_40 {
  width: 40%;
}

.w_50 {
  width: 50%;
}

.w_60 {
  width: 60%;
}

.w_70 {
  width: 70%;
}

.w_80 {
  width: 80%;
}

.w_90 {
  width: 90%;
}

.w_100 {
  width: 100%;
}

.w_79 {
  width: 79%;
}

.w_21 {
  width: 21%;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_80 {
  margin-bottom: 80px;
}

.mb_120 {
  margin-bottom: 120px;
}

.logo {
  height: 34px;
}

.login_heading {
  color: #0C1018;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.28px;
  margin: 84px 0 4px;
}
.login_heading.mb_120 {
  margin-bottom: 120px;
}

.login_text {
  font-size: 14px;
  color: #667085;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.input_group:focus-within .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 0px solid;
  border-bottom: 1px solid #06514F;
}

.input_group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  width: 100%;
  height: 48px;
}
.input_group:focus-within .icon_form, .input_group.error:focus-within .icon_form {
  outline: none;
  border-color: #06514F;
  transition: 0s;
}
.input_group.error .icon_form {
  border-color: #D92D20;
}
.input_group.error svg path {
  stroke: #06514F;
}
.input_group:focus-within svg path {
  stroke: #06514F;
  transition: 0s;
}
.input_group.error .form_control {
  border-bottom: 1px solid #D92D20;
}

.login_content {
  padding: 70px 40px;
}
.login_content .form_control {
  border: 0px;
  border-bottom: 1px solid #D0D5DD;
  width: 100%;
  height: 26px;
  padding-left: 8px;
  font-size: 15px;
  z-index: 9;
  background: transparent;
  position: relative;
  color: #0C1018;
  padding-bottom: 3px;
}
.login_content .icon_form {
  width: 16px;
  border-bottom: 1px solid #D0D5DD;
  height: 25.5px;
  display: flex;
  align-items: center;
}
.login_content .form_control:focus {
  border: 0;
  border-bottom: 1px solid #06514F;
  outline: none;
}
.login_content button {
  width: 100%;
}

.label_group {
  text-align: left;
  width: calc(100% - 16px);
}
.label_group label {
  position: absolute;
  left: 8px;
  top: 3px;
  transition: 0.3s ease;
  color: #667085;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.label_group label.label_active {
  top: -20px;
  transition: 0.3s ease;
  color: #98A2B3;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.icon_form svg path {
  stroke: #667085;
}

.w_login {
  width: 402px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
input:-internal-autofill-selected {
  -webkit-text-fill-color: #222;
  box-shadow: inset 0 0 0 1px rgb(255, 255, 255), inset 0 0 0 100px #fff !important;
}

/* Loader Start */
.loader_img {
  animation: spin 0.5s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.loader_btn.activate {
  background: #B4CAC9;
  border: 1px solid #B4CAC9;
}
.loader_btn.activate .loader_text {
  display: none;
}
.loader_btn.activate .loader_icon {
  display: block;
}

.loader_icon {
  display: none;
}

/*Loader End*/
.error_message {
  color: #D92D20;
  text-align: end;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2px;
  height: 16px !important;
}

.testimonials {
  width: 322px;
  margin-right: 44px;
  margin-bottom: 47px;
}
.testimonials .testimonial_text {
  color: #667085;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  margin-bottom: 16px;
  padding-top: 13px;
}
.testimonials .testimonial_heading {
  color: #1D2939;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 165%;
  margin-bottom: 0;
}
.testimonials .carousel-item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  height: 1.5px;
  width: 67px;
  background: #06514F;
  display: block;
  margin-bottom: 12px;
}

.sign_up_link {
  color: #667085;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
}

.link_brand {
  color: #06514F;
  font-weight: 500;
  text-decoration: none;
}

.link_brand:hover {
  color: #054947;
}

.pin.error .form_otp {
  border-bottom: 1px solid #D92D20;
}

.form_otp {
  width: 40px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 0px;
  border-bottom: 1px solid #D0D5DD;
  background: #FFF;
  text-align: center;
  color: #0C1018;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Poppins", sans-serif;
}
.form_otp:focus-visible {
  outline: none;
  border: 0px;
  border-bottom: 1px solid #344054 !important;
}
.form_otp:invalid {
  color: #D92D20;
  caret-color: #222;
}
.form_otp:not(:-moz-placeholder-shown) {
  border-bottom: 1px solid #06514F;
}
.form_otp:not(:placeholder-shown) {
  border-bottom: 1px solid #06514F;
}
.form_otp:-moz-placeholder-shown {
  border-bottom: 1px solid #D0D5DD;
}
.form_otp:placeholder-shown {
  border-bottom: 1px solid #D0D5DD;
}

.pin {
  display: flex;
  gap: 16px;
  margin-top: 1.2rem;
}

.email_id {
  color: #0C1018;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  gap: 6px;
}
.email_id svg {
  position: relative;
  top: 1px;
}

.link_brand svg path {
  stroke: #667085;
  transition: 0.5s ease;
}
.link_brand:hover svg path {
  stroke: #06514F;
  transition: 0.5s ease;
}

.otp_label {
  color: #667085;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.text_link {
  color: #06514F;
  text-align: right;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.text_link:hover {
  color: #054947;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_70 {
  margin-bottom: 70px;
}

.label_group .dd-options li .dd-option label {
  position: relative;
  left: auto;
  color: var(--gray-700, #344054);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  top: auto;
  line-height: normal !important;
  cursor: pointer;
  transition: 0.5s ease-in;
}

.label_group .dd-option {
  display: flex;
}
.label_group .dd-options {
  border-radius: 6px;
  border: 0px;
  border-top: none;
  box-shadow: 0px 4px 24px 0px rgba(23, 23, 23, 0.08);
  background: #fff;
  overflow: auto;
  padding: 6px;
  margin-top: 4px;
}

.label_group .dd-option:hover {
  color: var(--gray-700, #344054);
  background: var(--gray-50, #F9FAFB);
}

.label_group .dd-option.dd-option-selected {
  border-radius: 6px;
  background: rgba(180, 202, 201, 0.3);
  color: #06514F;
  font-size: 14px;
}

.dd-option-image {
  margin-right: 0.8rem !important;
}

.label_group .dd-option {
  padding: 6px 6px;
  border-bottom: 0px;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
}

.error_slick .dd-selected {
  border-bottom: 1px solid #D92D20;
}

.dd-selected {
  position: relative;
  z-index: 3;
  cursor: pointer;
  border-bottom: 1px solid #D0D5DD;
}
.dd-selected .dd-selected-text {
  display: flex;
  line-height: 14px !important;
  position: relative;
  top: 0;
  left: auto;
  color: #0C1018;
}

.dd-selected:focus,
.dd-select:focus-visible,
.dd-selected:focus-within,
a.dd-selected.active {
  border-bottom: 1px solid #06514F;
  transition: 0s ease-in;
}

.d-flex .dd-container {
  width: 60% !important;
}
.d-flex .dd-select {
  width: 100% !important;
}

.contactType ul li:first-child {
  display: none;
}

.dd-pointer-down {
  top: 6px;
  content: "";
  background: url(../../images/login/icons/chevron-down.svg);
  background-size: cover;
  height: 16px;
  right: 0;
  margin-left: 0;
  position: absolute;
  width: 16px;
  transition: 0.3s ease;
  transform: rotate(180deg);
}

.dd-pointer-up {
  top: 5px;
  content: "";
  background: url(../../images/login/icons/chevron-down.svg);
  background-size: cover;
  height: 16px;
  right: 0;
  margin-left: 0;
  position: absolute;
  width: 16px;
  transition: 0.3s ease;
  transform: rotate(0deg);
}

.select2-container--below.select2-container--focus.select2-container--open .select2-selection--single {
  border-bottom: 1px solid #06514F;
}

.select2-container--default .select2-selection--single:focus-visible {
  outline: none;
}

#form_business_type .input_group:focus-within .icon_form.active,
#form_business_type .input_group.error:focus-within .icon_form.active {
  outline: none;
  border-color: #D0D5DD;
}

span.icon_form.active {
  border-bottom: 1px solid #D0D5DD;
}

.label_group .contactLabel {
  left: 23px;
}

.label_group .dd-selected-text.label_active {
  top: 0;
  transition: 0.3s ease;
  color: #667085;
  font-size: 14px;
  font-style: normal;
  cursor: pointer;
  font-weight: 400;
}

.login_content .form_contact.form_control {
  margin-left: 8px;
  padding-left: 0;
}

/*Banner Start*/
.w_banner {
  width: calc(100vw - 402px);
  background: linear-gradient(225deg, #DCF9FE -3.61%, #E3FCF7 34.36%, rgba(227, 252, 247, 0.84) 140.47%);
}
.w_banner.bg_2 {
  background: #E7F8E2 !important;
  transition: 0.4s ease;
}

.banner_bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.banner {
  padding-left: 63px;
  overflow: hidden;
  transition: 0.4s ease;
  position: relative;
}

.banner_img {
  width: 590px;
  margin-bottom: 35px;
  position: relative;
}
.banner_img.show_img {
  opacity: 1;
  transition: 0.4s ease;
}
.banner_img.hide_img {
  opacity: 0;
  transition: 0.4s ease;
}

.banner_img_2 {
  position: absolute;
  left: 0;
  width: auto;
  height: 90%;
  top: 50%;
  transition: 0.4s ease;
  left: 0;
  transform: translate(0, -50%);
}
.banner_img_2.show_img {
  opacity: 1;
  transition: 0.4s ease;
}
.banner_img_2.hide_img {
  opacity: 0;
  transition: 0.4s ease;
}

.banner_images {
  display: flex;
  align-items: end;
}

/*Banner End*/
@media screen and (max-width: 768px) {
  .banner_images {
    display: none;
  }
  .login_content {
    padding: 40px 29px;
  }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@media screen and (max-width: 1600px) {
  .mt_xs_20 {
    margin-top: 20px;
  }
  .login_content {
    padding: 40px;
  }
}
.form_group {
  margin-bottom: 8px;
}

.icon_form.glow svg path {
  stroke: #06514F;
}

.contact_cs:placeholder {
  color: #98A2B3;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact_cs::-moz-placeholder {
  color: #98A2B3;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact_cs::placeholder {
  color: #98A2B3;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.timer {
  color: #98A2B3;
  text-align: right;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.timer span {
  color: var(--Success-700, #027A48);
  font-weight: 500;
}

.toast_container .toast-danger {
  background: rgba(255, 239, 239, 0.95);
  border: 2px solid rgba(255, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 2px rgba(252, 27, 19, 0.08);
  border-radius: 12px;
}

.toast_container .toast-success {
  background: rgba(240, 255, 240, 0.95);
  border: 2px solid rgba(3, 172, 0, 0.4);
  box-shadow: 0px 0px 10px 2px rgba(3, 172, 0, 0.08);
  border-radius: 12px;
}

.toast_container .toast-success .toast-body,
.toast_container .toast-danger .toast-body {
  padding: 13px 15px;
}

.toast_container .img_toast {
  width: 32px;
  margin-right: 10px;
  height: 32px;
}

.toast_container .toast_head {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #222222;
  margin: 0;
}

.toast_container .toast_text {
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  color: #797979;
  margin: 0;
}

.toast_container .toast_close {
  border: 0;
  background: none;
}

.toast_container .toast_close img {
  width: 24px;
  opacity: 0.4;
  transition: 0.3s;
}

.btn-close:focus {
  outline: none !important;
  box-shadow: none !important;
}/*# sourceMappingURL=style.css.map */