@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*28-08-2024*/
body .registered-page .login-form-bx {
    width: 600px;
}
/*14-08-2024*/
.gender_dob_main {
    display: flex;
    gap: 10px;
}
.gender_dob_main .aim_group {
    width: 100%;
    margin: 0px 0px;
}
/*14-08-2024 end*/
/*13-08-2024*/

.aim_group .your_role_inp {
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    padding: 16px;
}

.aim_group .your_role_inp .ds_flex {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.aim_group .your_role_inp .your_role_inp_inner {
    position: relative;
}

.aim_group .your_role_inp .your_role_inp_inner input {
    opacity: 0.011;
    z-index: 100;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.aim_group .your_role_inp .your_role_inp_inner .your_role_txt_icn {
    display: flex;
    align-items: center;
    border: 1px solid #E7E6F0;
    padding: 6px 12px 6px 12px;
    border-radius: 8px;
    gap: 5px;
}

.aim_group .your_role_inp .your_role_inp_inner input:checked+label .your_role_txt_icn {
    border-color: #93268F;
    color: #93268F;
}

.aim_group .your_role_inp .your_role_inp_inner label {
    position: relative;
    top: unset;
    left: unset;
    background: transparent;
}

.aim_group .your_role_inp .your_role_inp_inner .your_role_txt_icn .your_role_text p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
}


.aim_group .your_role_inp .your_role_inp_inner .your_role_txt_icn .your_role_icn img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.do_it_later_btn button {
    color: #94278F;
    background: transparent;
    border: none;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 400;
}

.do_it_later_btn button:hover {
    background: none;
    color: #94278F;
}


/*13-08-2024 end*/

    *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

    }
    input[type="text"]::-webkit-scrollbar {
    display: none;
}
    p{
   font-family: 'Poppins', sans-serif;
    }
    body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    height: 100vh;
    overflow: hidden;
}
    a{
      text-decoration: none;
    font-family: 'Poppins', sans-serif;

    }
    ul{
      list-style: none;
    }
    img{
      width: 100%;
    } 
    .login-logo img {
    width: 350px;
    margin-bottom: 15px;
}
custom-select {
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  height: 50px;
  padding: 0px;
  width: 100%;
}

.custom-select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
  width: 100%;
}

.custom-select-wrapper select {
  display: none;
}
.gender-part #gender-select {
    width: 100%;
    height: 50px;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    font-size: 16px;
    color: #898989;
}
.custom-select {
  position: relative;
/*  display: inline-block;*/
}

.custom-select-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0px 16px;
    font-size: 16px;
    color: #898989;
    line-height: 50px;
    background: #ffffff;
    cursor: pointer;
    height: 47px;
    border-radius: 8px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: left;
}

.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  top: 50%;
  right: 18px;
  margin-top: -3px;
  border-bottom: 1px solid #979797;
  border-right: 1px solid #979797;
  transform: rotate(45deg) translateY(-50%);
  transition: all .4s ease-in-out;
  transform-origin: 50% 0;
}

.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  margin: 0;
  border: 1px solid #b5b5b5;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 2px 1px rgba(0, 0, 0, .07);
  background: #fff;
  transition: all .4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  z-index: 9;
  margin-top: 3px;
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  z-index: 999;
}

.option-hover:before {
  background: #f9f9f9;
}

.custom-option {
    position: relative;
    display: block;
    padding: 6px;
    font-size: 14px;
    color: #202e3b;
    line-height: 1.5;
    cursor: pointer;
    transition: all .4s ease-in-out;
    text-align: left;
}

.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}

.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}

.custom-option:hover {
  background: #852782;
  color: #fff;
}

.otp-field-success span.success-otp {
    color: #0fbbc3;
    margin-bottom: 10px;
    position: absolute;
    top: -15px;
    width: 100%;
    left: 12px;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    box-shadow: unset;
}
body .btn-check:focus+.btn-primary, .btn-primary:focus {
    box-shadow: unset;
}
.aim_group span.eror-part {
    width: 100%;
    color: #f00;
    margin: 0 auto;
    background-color: #fae3e1;
    border-radius: 4px;
    padding: 5px 8px;
    font-weight: 400;
    text-align: center;
    display: flex;
    justify-content: center;
}
.login-next-btn button:hover {
    background-color: #ffffff !important;
    color: #93268f !important;
    border-color: #93268f!important;
}
.login-lft-txt p {
    font-size: 16px;
    color: #787878;
    text-align: center;
}
.play-store-icon a img {
    width: 150px;
    margin-inline: 5px;
}
.login-lft-box {
    width: 420px;          
    text-align: center;
}
.login-left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.login-con {
    display: flex;
    align-items: center;
    height: 100%;
}
.site-login {
    height: 100vh;
    background-image: url('../assets/images/login-new-bg.jpg');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-y: auto;
}

.login-right {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-next-btn{
  display: flex;
    justify-content: center;
    gap: 20px;
}
.login-next-btn button {
    margin-left: 0 !important;
    color: #ffffff !important;
    border: 1px solid #93268F !important;
    border-radius: 14px !important;
    height: 55px;
    /* width: 150px; */
    background-color: #93268f !important;
    font-size: 18px !important;
    text-decoration: none;
}
.login-form-bx {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width:fit-content;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    margin: 0 auto;
    background-color: #fff;
}
.started-txt h3 {
    font-size: 32px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0;
}
.started-txt p {
    font-size: 16px;
    color: #787878;
}
.aim_group label {
    font-size: 14px;
    color: #000;
    display: block;
    text-align: left;
}
.aim_group {
    position: relative;
    margin: 24px 0;
}
.aim_group .iti {
    width: 100%;
}
.aim_group input {
    width: 100%;
    height: 50px;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    font-size: 16px;
    color: #898989;
    font-family: 'Poppins', sans-serif;
}
.aim_group label {
    font-size: 14px;
    color: #000;
    display: block;
    text-align: left;
    position: absolute;
    top: -9px;
    z-index: 1;
    left: 15px;
    background-color: #fff;
}
.aim_group .iti__selected-flag::after {
    content: '';
    height: 55%;
    width: 1px;
    background-color: #999999;
    right: -2px;
    position: absolute;
}
.aim_group input:focus-visible {
      outline:none;
}
.login-bottom-img {
    width: calc(100%/6);
}
/*verify-page*/

    .eror-part {
    width: 100%;
    color: #f00;
    margin: 0 auto;
    /*background-color: #fae3e1;*/
    border-radius: 4px;
    padding: 5px 8px;
    font-weight: 400;
    text-align: center;
    display: flex;
    justify-content: center;
}
      input.red-error {
    border-color: #f00 !important;
}
.verify-page .login-right {
    width: 100%;
}
body .verify-page .login-next-btn .submit-button {
    opacity: 1;
    line-height: 20px;
}
.verify-page .login-right .login-form-bx {
    padding: 32px 65px;
    margin-right: 40px;
}
.verify-page .resend-code a {
    text-decoration: none;
}
/*otp css start here*/

.started-txt h3 img {
    width: 30px;
    margin-top: -5px;
}
.verify-otp-num p{
        font-size: 16px;
    color: #787878;
    text-align: center !important;
    margin: 20px 0;
    text-decoration: none;
}
/*otp css end here*/
.otp-field {
    flex-direction: row;
    column-gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.otp-field input {
    height: 45px;
    width: 45px;
    border-radius: 8px;
    outline: none;
    font-size: 18px;
    text-align: center;
    border: 1px solid #DCDCDC;
    color: #8b8686;
}
.otp-box-con .card-body {
    box-shadow: none;
}
.login-next-btn button.btn-primary.active:focus{
    box-shadow: none;
}
/*resend code css */

.rec-resend-code {
    margin-top: 20px;
}
body .resend-code p {
    color: #94278f;
    font-weight: 600;
}
.recive-code p, .resend-code p {
    font-size: 16px;
    color: #787878;
    margin-bottom: 0;
    text-align: center;
}
.resend-code p span {
    color: #94278F;
}
/*end*/
/*otp field css start here*/
         .otp-field {
         flex-direction: row;
         column-gap: 10px;
         display: flex;
         align-items: center;
         justify-content: center;
         }
         .otp-field input {
         height: 45px;
         width: 45px;
         border-radius: 8px;
         outline: none;
         font-size: 18px;
         text-align: center;
         border: 1px solid #DCDCDC;
         color: #8b8686;
         -moz-appearance: textfield;
         }
         .otp-field input:focus {
         box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
         }
         .otp-field input::-webkit-inner-spin-button,
         .otp-field input::-webkit-outer-spin-button {
         display: none;
         }
         .popup-next-btn button.active{
         color: #93268F !important;
         border: 1px solid #93268F !important;
         background-color: #fff !important;
         }
         .popup-next-btn .btn-primary.disabled, .popup-next-btn .btn-primary:disabled{
         color: #fff !important;
         background-color: #93268F !important;
         border-color: #93268F ;
         }
         .otp-box-con .card-body {
         box-shadow: none;
         }
.login-form-right {
    display: flex;
    justify-content: center;
    align-items: center;
/*    background-color: #FDF5FE;
*/    width: 50%;
    height: 100%;
}
/*loding btn css start here*/
.login-next-btn .submit-button {
  cursor: pointer;
  position: relative;
  background: #93268F;
  color: white;
  outline: none;
  border: none;
  padding: 0.5em 1em;
  margin: 0;
  line-height: normal;
  border-radius: 3px;
  opacity: 1;
}
.login-next-btn .submit-button:hover,
.login-next-btn .submit-button:focus {
  background: #93268F;
}
.login-next-btn .submit-button.is-loading {
    cursor: wait;
    background: transparent !important;
}
.login-next-btn .submit-button.is-loading .submit-button__text {
  opacity: 0;
}
.login-next-btn .submit-button__loader-base,
.login-next-btn .submit-button__loader,
.login-next-btn .submit-button__loader:before,
.login-next-btn .submit-button__loader:after {
  border-radius: 50%;
  width:14px ;
  height: 14px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation: load 1.5s infinite linear;
          animation: load 1.5s infinite linear;
  background: #93268F;
}
.login-next-btn .submit-button__loader {
  display: none;
  font-size: 18px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  text-indent: -9999em;
  transform: translate3d(-50%, -50%, 0);
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.login-next-btn .submit-button.is-loading .submit-button__loader {
  display: block;
}
.login-next-btn .submit-button__loader-pseudo-base,
.login-next-btn .submit-button__loader:before,
.login-next-btn .submit-button__loader:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.login-next-btn .submit-button__loader:before {
  transform: translateX(calc(-100% - 5px));
}
.login-next-btn .submit-button__loader:after {
  transform: translateX(calc(100% + 5px));
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@-webkit-keyframes load {
  0%,
  100% {
    background-color: #93268F;
  }
  50% {
    background-color: transparent;
  }
}
@keyframes load {
  0%,
  100% {
    background-color: #93268F;
  }
  50% {
    background-color: transparent;
  }
}
.verify-otp-num a.hange-num-part {
    position: absolute;
    top: 23px;
    right: 28px;
    color: #93268f;
    font-size: 16px;
    text-decoration: none;
}
.verify-otp-num {
    position: relative;
}
/*end here*/
/*end*/
/******************************register**********************************/
.registered-page .aim_group input {
    padding-left: 15px;
}
/*****************************end*************************************/
/***************************media*****************************/
@media screen and (max-width: 1550px) {
body .registered-page .login-form-bx {
    width: 702px;
}
body .registered-page .login-form-bx {
    width: 630px;
}
}
@media screen and (max-width: 1400px) {
body .registered-page .login-form-bx {
    width: 630px;
}
}
@media screen and (max-width: 1300px) {
    .custom-select-trigger {
    font-size: 13px;
}
    .started-txt h3 {
    font-size: 25px;
}
.registered-page .login-right {
padding: 30px;
} 
.started-txt h3 {
    font-size: 19px;
}
.started-txt p {
    font-size: 13px;
}
.aim_group input {
    font-size: 13px;
}
.verify-page  .started-txt h3 {
    font-size: 32px;
}
.verify-page .started-txt p {
    font-size: 16px;
}
}
@media screen and (min-width: 1024px) and (max-width: 1299px) {
.login-con {
    justify-content: center;
    gap: 125px;
}    
.login-left {
    width: auto;
}
.login-right {
    width: auto;
}
.verify-page .login-form-bx {
    margin-right: 0px !important;
}
.verify-page .login-form-right {
    width: auto;
}
}
@media screen and (min-width: 1024px) and (max-width: 1024px) {
.verify-page .login-con {
    padding: 0px 50px;
}    
}
@media screen and (max-width: 1100px) {
body .verify-page .login-right .login-page-form .login-form-bx {
    padding: 20px;
}
}
@media screen and (max-width: 991px) {
body .registered-page .login-form-bx {
    width: 100%;
}
body .registered-page  .login-left {
    height: 110px;

}
.registered-page .login-lft-txt p {
    font-size: 16px;
}
.registered-page .login-lft-box {
    padding: 0px 20px;
}
body .verify-page  .verify-otp-num a.hange-num-part {
    top: 36px;
    right: 48px;
}
body .verify-page .login-left {
    height: auto;
}
body .verify-page .login-form-right {
    display: block;
    width: 100%;
}
body .verify-page .login-right .login-page-form .login-form-bx {
    width: 100%;
}
.verify-page .login-right {
    width: 100%;
    height: auto;
    padding-top: 35px;
    display: flex;
}
.login-next-btn button {
    height: 45px;
    width: 120px;
    font-size: 20px !important;
}
    .aim_group label {
    font-size: 12px;
}
.site-login {
    display: flex;
    align-items: center;
}
.login-con {
    display: block;
    height: auto;
}
.login-left {
    width: 100%;
    height: 515px;
    padding-bottom: 45px;
    align-items: end;
}
.login-right {
    width: 100%;
    height: 510px;
    display: block;
    padding-top: 45px;
}
.login-lft-box {
    width: 100%;
}
.play-store-icon a img {
    width: 200px;
}
.login-lft-txt p {
    font-size: 22px;
    padding: 0px 15px;
}
.login-form-bx {
    width: 60%;
}
.started-txt h3 {
    font-size: 30px;
}
.started-txt p {
    font-size: 20px;
    padding-top: 12px;
}
}
@media screen and (max-width: 767px) {
.gender-part #gender-select {
    height: 38px;
}
.gender-part #gender-select .custom-select-trigger:after {
    width: 8px;
    height: 8px;
}
.gender-part #gender-select .custom-option {
    font-size: 12px;
}
.aim_group .your_role_inp .your_role_inp_inner .your_role_txt_icn .your_role_icn img {
    width: 30px;
    height: 30px;
}
.aim_group .your_role_inp .your_role_inp_inner .your_role_txt_icn .your_role_text p {
    font-size: 12px;
}
.gender-part #gender-select ::placeholder{
         font-size: 13px;   
}
.gender-part #gender-select .custom-select-trigger {
    line-height: 38px;
    height: 36px;
}
body .registered-page  .login-left {
    height: auto;
}
.gender_dob_main {
    flex-wrap: wrap;
    gap: 20px;
}
    .registered-page  .aim_group input {
    height: 38px;
}
    .registered-page .login-lft-txt p {
    font-size: 12px;
}
    .registered-page .login-lft-box {
    padding: 0px 0px;
}
    .registered-page .login-right {
    padding: 20px 15px;
}
    .registered-page .login-logo img {
    width: 250px;
}
.registered-page .login-left {
    padding-bottom: 0px;
}
    .verify-page  .started-txt h3 {
    font-size: 24px ;
}
  .verify-page  .login-right {
    padding: 0px 15px 40px !important;
}
.verify-page .login-next-btn button {
    width: 130px;
    font-size: 16px !important;
}
.verify-page  .verify-otp-num a.hange-num-part {
    top: 27px !important;
    right: 58px !important;
    font-size: 10px !important;
}
.verify-page  .verify-otp-num p {
    font-size: 10px !important;
    margin: 20px 0 15px !important;
}
.verify-page  .login-form-bx {
    padding: 20px 16px !important;
}
.verify-page  .login-lft-box {
    width: 100% !important;
    text-align: center !important;
}
.verify-page  .site-login {
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
}
.verify-page  .login-con {
    display: block !important;
    height: auto !important;
}
.verify-page  .login-left {
    width: 100% !important;
    padding: 50px 15px 40px !important;
    height: auto !important;
}
.verify-page  .login-form-right {
    width: 100% !important;
    padding: 0px 15px  40px !important;
}
.verify-page  .login-right {
    padding-top: 0px !important;
    height: auto !important;
}
.verify-page  .login-lft-box .login-logo img {
    width: 250px !important;
}
.verify-page  .play-store-icon a img {
    width: 135px !important;
}
    .aim_group label {
    font-size: 10px;
    top: -7px;
}
.login-con {
    height: auto;
}
.play-store-icon a img {
    width: 150px !important;
}
.login-next-btn button {
    border-radius: 12px !important;
    height: 38px;
    width: auto;
    font-size: 12px !important;
}

.do_it_later_btn button {
    font-size: 12px;
}

.started-txt p {
    font-size: 12px;
}
.aim_group input {
    font-size: 12px;
}

.login-right {
    height: auto;
}
.login-left {
    height: auto;
}

.login-left {
    padding: 40px 15px;
    align-items: flex-end;
}
.login-right {
    width: 100%;
    padding: 40px;
}
.site-login .main-logo img {
    width: 250px;
}
.login-lft-txt p {
    font-size: 12px;
    padding: 0px;
}
.started-txt h3 {
    font-size: 24px;
}
.login-form-bx {
    padding: 16px;
}
.site-login .play-store-icon {
    display: flex;
    justify-content: center;
}
.login-right {
    display: flow;
    padding: 0px 15px 50px;
}
.login-form-bx {
    width: 100%;
}
}
@media screen and (min-width: 540px) and (max-width: 540px) {
.site-login {
    height: 100vh;
}
}

@media(max-width: 380px) {
.site-login {
    height: unset;
}
}
@media(max-width: 365px) {
.login-con {
    height: 100vh;
}
}
@media screen and (min-width: 359px) and (max-width: 380px) {
    .site-login.registered-page {
    display: block;
}

}
@media screen and (max-width: 320px) {
    .verify-page  .started-txt h3 {
    font-size: 22px;
}
.started-txt h3 img {
    width: 26px;
    margin-top: -5px;
}
.verify-page  .verify-otp-num a.hange-num-part {
    right: 38px !important;
}
.verify-page .login-right .login-form-bx {
    margin-right: unset;
}
    .site-login.verify-page {
    display: block;
    overflow: auto;
}
.verify-page  .play-store-icon a img {
    width: 115px !important;
}
    .login-left {
    padding: 40px 15px 20px;
}
.site-login .play-store-icon img {
    margin-bottom: 15px;
}
.site-login .play-store-icon {
    display: block;
}
.login-con {
    height: auto;
}
.play-store-icon a img {
    width: 120px !important;
}
}
