html {
    margin:0;
    padding:0;
	width: 100%; 
	height: 100%;
	display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

p,span,div,h1,h2,h3,h4,label {
  user-select: none;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;   
  margin: 0;
}

body {
    margin:0;
    padding:0;
	width: 100%;
	height: 100%;
    overflow-x: hidden;
	overflow-y: scroll;
	display: flex;
    flex-direction: column;
    align-items: center;
}

p,span,div,h1,h2,h3,h4,label {
 font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;   
}

.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 18px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000000000000;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  #error { background: #e74c3c; }
  #success { background: #2ecc71; }
  .popup.showw { opacity: 1; }
  .popup.hide { opacity: 0; }
  


img.siteLogo {
    width: 150px;
}

.css-iklmh6 {
display: flex;
    height: 36px;
    width: 36px;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: solid 1px #bababa;
    opacity: 1;
    background: 0;
    cursor: pointer;
}

h3.css-78473hdjss.dark {
    color: white;
}

.loginForm {
    display: flex
;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

div.loginInputGrp {
    display: flex
;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

label.loginLable {
    font-size: 16px;
    color: #717171;
}

img.otherVendorLogo {
    width: 40px;
    border-radius: 50px;
    border: solid 2px #ffeeff;
    margin-right: -20px;
    height: 40px;
}

.otherVendorsDiv {
        display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin-top: 50px;
}

span.countSpan {
    font-size: 16px;
    font-weight: 600;
    color: black;
}

.inputHolder {
    width: calc(100% - 34px);
    border-radius: 4px;
    padding: 10px 16px;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    border: solid 1px #b9b9b9;
    display: flex;
    align-items: center;
}

h3.css-78473hdjss {
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    color: #646464;
}

h3.css-7393jeydyd {
    font-size: 15px;
    color: #5900d8;
    cursor: pointer;
}

span.loginwithgoogle {
    width: 100%;
    height: 45px;
    border: solid 1px #d2d2d2;
    border-radius: 10px;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    background: #ecf4ff;
}

.btnHolder {
    width: 100%;
    margin: 15px 0;
}

button.btn100 {
    height: 45px;
    width: 100%;
    border: 0;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    background: #5900d8;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

input.input100 {
    width: 100%;
    font-size: 16px;
    border: 0;
    outline: 0;
    height: 25px;
    background: 0;
}

label.loginLable.dark {
    color: white;
}

p.loginCampDesc.dark {
    color: #c9c9c9;
}

p.ghsus.dark {
    color: white;
}

p.loginAgreementTxt.dark {
    color: white;
}

i.mode {
    font-size: 17px;
    color: #989898;
}

.css-iklmh6.dark {
    color: white;
    background: black;
    border: solid 1px white;
}

i.mode.dark {
    color: white;
}

h2.loginTxtTitle {
    font-size: 23px;
    color: black;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p.css-hd7jwe {
    color: #8d8d8d;
    font-size: 16px;
    max-width: 100%;
    font-family: 'Poppins', sans-serif;
}


div.loader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000000000000;
    top: 0;
    background: #ffffffd9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid #552fc2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btnLoader {
    width: 15px;
    height: 15px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btnLoader2 {
    width: 15px;
    height: 15px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid #5900d8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

b.css-hdgs89d {
    color: #5900d8;
    cursor: pointer;
}

p.loginAgreementTxt {
    font-size: 14px;
    color: #686868;
    font-weight: 300;
}

p.googleAuthBtn {
    font-size: 16px;
    color: black;
}

button.btn100:hover {
background: #0dc50d;    
}

section.mainLoginBody.dark {
    background: black;
}

.loginSlider.dark {
    background: #131313;
}

h2.loginTxtTitle.dark {
    color: white;
}

h2.loginCampHead.dark {
    color: white;
}

p.css-hd7jwe.dark {
    color: white;
}

b.lnk {
    font-size: 13px; 
    font-weight: 600;
    color: #0dc50d;
    cursor: pointer;
}

.forgotPassDiv {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

div.loginCampSlide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2px 0;
  color: #888;
  font-weight: bold;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}

div.bckToLgin {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

h3.bckToLgin {
    font-size: 17px;
    color: #0dc50d;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

div.contentContainer {
    width: 100%;
    height: 100%;
}

i {
display: flex;
}

.divider:not(:empty)::before {
  margin-right: .75em;
}

.divider:not(:empty)::after {
  margin-left: .75em;
}

img.loginGoogleImg {
    width: 20px;
    height: 20px;
}

.modeControlDiv {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    gap: 16px;
}

.hdur-234 {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    height: 100%;
    width: 460px;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
}

.c6474hd {
    height: 8px;
    width: 8px;
    border-radius: 16px;
    background-color: #b5b5b5d1;
    transition-property: background-color, width;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

span.c6474hd.active {
    width: 20px;
    height: 8px;
    border-radius: 50px;
    background: #5900d8;
}


span.c6474hd {
    
}




section.mainLoginBody {
    width: 100%;
    display: flex
;
    justify-content: space-between;
    background: white;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.loginBox {
    width: 100%;
    height: 100%;
}

span.c6474hd.completed {
    background: #5900d8;
}

p.jdussedf {
    font-size: 15px;
    color: #848484;
}

.otpInputDiv {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 5px;
}

input.otpInput {
    height: 40px;
    width: 40px;
    border-radius: 4px;
    border: solid 1px #d1d1d1;
    text-align: center;
    font-size: 17px;
    color: grey;
    background: 0;
}

input.otpInput2 {
    height: 40px;
    width: 40px;
    border-radius: 4px;
    border: solid 2px #d1d1d1;
    text-align: center;
    font-size: 17px;
    color: grey;
    background: 0;
}

h3.css-7393jeydyd.dark {
    color: #0dc50d;
}

input.otpInput.dark {
border: solid white 2px;
    color: white;
}


input.otpInput:focus {
border: solid 1px #5900d8;
outline: 0;
}

p.passwordValdationCheck {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #989898;
    font-size: 13px;
}

.passwordValidationBoard {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

p.passwordValdationCheck.pass {
    color: #0dc50d;
}

i.chkss.pass {
    color: #0dc50d;
}

.genderSelect {
    display: flex;
    align-items: center;
    gap: 15px;
}

span.artChck {
    padding: 5px;
    border: solid 2px #d6bbdd;
    border-radius: 7px;
    background: #ffefff;
    display: flex;
    align-items: center;
    gap: 5px;
    width: max-content;
}

.chanelSelect {
 display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    flex-wrap: wrap;
}

span.artChck.selected {
background: #dfa2ff;
}

span.artChck.selected span{
background: #5900d8;    
}

p.artiCheckBox {
    font-size: 14px;
}

div.countriesModal {
    position: absolute;
    background: white;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 100%;
    min-width: max-content;
    margin-top: 100px;
    gap: 7px;
    padding: 15px;
}

img.flag {
    height: 13px;
    width: 20px;
    border-radius: 2px;
}

.dropdown-list {
position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    border: 1px solid #ccc;
    background-color: #fff;
    max-height: 350px;
    overflow-y: auto;
    margin: 0;
    padding: 9px;
    list-style: none;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 5px;
    gap: 7px;
}

li {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 16px; 
}

.hdjdhff {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

h4.congs {
    font-size: 19px;
}

button.proceedBtn {
    height: 40px;
    width: 250px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    color: white;
    background: #00dc00;
    margin-top: 30px;
}

img.excitement {
    width: 150px;
}

p.excitementTxt {
    font-size: 16px;
    color: #858585;
}

p.excitementTxt.dark {
    color: white;
}

input#countrySearch {
min-height: 40px;
    border-radius: 10px;
    border: solid 1px #d8d8d8;
    width: calc(100% - 30px);
    padding: 0 10px;
    margin-bottom: 10px;
}

input#countrySearch:focus {
 outline: 0;   
}

span.c6474hd.completed.dark {
    background: white;
}

input.input100.dark {
    color: white;
}

.dialCode.dark {
color: white;
}

i.dwwn.dark {
    color: white;
}

span.countriesList {
    display: flex;
    align-items: center;
    cursor: pointer;
}

span.artiCheckBox {
    width: 15px;
    height: 15px;
    display: flex;
    border: solid 1px grey;
    border-radius: 6px;
    cursor: pointer;
}

i.chkss.error {
    color: red;
}

span.phoneCodeInput {
    display: flex;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}

img.countryFlag {
    width: 25px;
    height: 15px;
    border-radius: 3px;
    margin-right: 5px;
}

p.dialCode {
    font-size: 16px;
    color: black;
}

button:disabled {
opacity: 0.4;
}

button:hover {
opacity: 0.6;
}

.boxGoogleBtn {
display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    opacity: 0;
    left: 0px;
    overflow: hidden;
    transform: scaleX(2.7);
}

.inboundBtnn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}


/* Remove arrows in Chrome, Safari, Edge, and Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows in Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.loginSlider {
    display: flex;
    width: 60%;
    flex-direction: column;
    opacity: 1;
    background-color: #ffeeff;
    padding: 48px;
}

.loginLogoBox {
    margin-bottom: 15px;
}

.loginBottomLeft {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

p.loginCampDesc {
    color: #727272;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.loginCheckList {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 10px;
    gap: 5px;
}

span.c6474hd.active.dark {
    background: white;
}

i.chk {
    color: #0dc50d;
    display: flex;
}

img.loginCampImg {
    margin-top: 30px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: #f8f0fb;
    box-shadow: 1px 1px 9px 2px #80808047;
}

h2.loginCampHead {
    font-size: 20px;
    color: black;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p.ghsus {
    font-size: 15px;
    font-weight: 600;
    color: #707070;
    font-family: 'Poppins', sans-serif;
}

span.checkListSpan {
    display: flex
;
    align-items: center;
    gap: 5px;
}

.loginTopBox {
    width: 100%;
    display: flex
;
    justify-content: space-between;
    margin-bottom: 30px;
}

span.loginTitleBox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

span.shd8933 {
    display: flex
;
    align-items: center;
    gap: 5px;
}

.manLoginDiv {
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow-x: hidden;
    opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 43px 32px 48px;
}

img.siteLogo2 {
display: none;
}







  
div.hide, span.hide, p.hide, i.hide, section.hide, input.hide, select.hide, ul.hide {
display: none;
}






 @media (max-width:900px){ 
.loginSlider {
    display: none;
}     
   
img.siteLogo2 {
display: block;
width: 150px;
}    

.modeControlDiv {
    justify-content: space-between;
    margin-bottom: 10px;
}
 }
 
 
 
@media (max-width:900px){ 
.hdur-234 {
width: 100%;
margin-top: 70px;
justify-content: flex-start;
}    
    
}