/* .auth0-overlay{
    width:100%;
    height: 100vh;
    position: fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100000000;
    display:flex;
    align-items: center;
    justify-content: center;
    display: none;
} */
.auth0-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000000;
    display: none;
}

.auth0-popup{
    width: 550px;
    max-width: 550px;
    background-color: #ffffff;
    position: relative;
    border-radius: 16px;
    padding: 60px 40px;
    margin: 130px auto;
}
.dark-design .auth0-popup{
    max-width: 550px;
    background-color: #1c1c1c;
    position: relative;
    border-radius: 16px;
    padding: 60px 40px;
    margin: 130px auto;
}
.auth0-logo{
    height: 24px;
    margin-bottom: 25px;
   
}
.auth0-heading{
    font-size:24px;
    font-weight: 600;
    color:#000000;
    margin-bottom: 4px;
}
.dark-design .auth0-heading{
    font-size:24px;
    font-weight: 600;
    color:#ffffff;
}
.auth0-para{
    font-size:14px;
    color: #000000 !important;
    font-weight: 400;
    margin-bottom: 0;
}
.dark-design .auth0-para{
    font-size:14px;
    color: #fff !important;
    font-weight: 400;
    margin-bottom: 0;
}
.auth0-input-box{
margin: 35px 0;
}
 .auth0-label{
    font-size: 14px;
    color: #000000;
    margin-bottom: 0;
}
.dark-design  .auth0-label{
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 0;
}
.auth0-input-box .auth0-mobile-input{
    width: 100%;
    background-color: transparent;
    padding: 8px 0;
    border: 0;
    border-bottom: 1px solid #444444;
    outline: none;
    caret-color: #000000;
    font-size: 16px;
    color: #373636;
    cursor: text;
}
.dark-design .auth0-input-box .auth0-mobile-input{
    width: 100%;
    background-color: transparent;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid #444444;
    outline: none;
    caret-color: #ffffff;
    font-size: 16px;
    color:  #e8e7e7;
    cursor: text;
}
.auth0-input-box .auth0-mobile-input:focus{
  border-bottom: 1px solid #ffd200;
}
.dark-design .auth0-input-box .auth0-mobile-input:focus{
  border-bottom: 1px solid #ffd200;
}
.auth0-submit-btn{
    min-width: 135px;
    height:43px;
    background-color: #9a9a9a; 
    border-radius: 24px;
    border: 0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size:14px;
    color:#000000;
    font-weight: 400;
    transition: background-color 0.3s;
    position: relative;
}

.dark-design .auth0-submit-btn{
    min-width: 135px;
    height:43px;
    background-color: #454545; 
    border-radius: 24px;
    border: 0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size:14px;
    color:#000000;
    font-weight: 400;
    transition: background-color 0.3s;
    position: relative;
}
.auth0-arrow{
    color: #979797; 
    font-size:14px;
}
.auth0-content form{
    margin-top: -10px;
}
.auth0-close{
    border: 1px solid #454545;
    padding: 20px 20px;
    border-radius: 50%;
    position: absolute;
    right:20px;
    top: 15px;
    cursor: pointer;
   filter:invert(100%);
   color: #979797;
}

/* .auth0-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: blue;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    position: relative;
} */

.auth0-submit-btn .spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #868585;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

.form-spin {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.otp-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;  
    border-top: 4px solid #FFD700;  
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


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

.auth0-submit-btn.loading {
    background-color: #ffd200;
    pointer-events: none;
    justify-content: center;
    align-items: center;
}

.auth0-content .otp-spinner{
    background-color: #e9e8e8;
    pointer-events: none;
    justify-content: center;
    align-items: center;
}
  .dark-design .otp-spinner{
    background-color: #1f1f1f;
    pointer-events: none;
    justify-content: center;
    align-items: center;
  }

.custom-alert {
    display: none; 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 5px;
    width: 400px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 1000;
}

.custom-alert button {
    padding: 2px 4px;
    background: gray;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.custom-alert button:hover {
    background: gray;
}

.error-alert {
    background: #f1cecf;
    color: #E5484D;;
}

.success-alert {
    background: #fff;
    color: #009900;
}



.auth0-submit-btn img {
    filter: invert(61%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(59%) contrast(90%);
    vertical-align: middle;
}
.dark-design .auth0-close{
    border: 1px solid #454545;
    padding: 20px 20px;
    border-radius: 50%;
    cursor: pointer;
   filter: invert(0%);
}

.auth0-otp-box{
   margin-top: 40px;
   display: none;
}
.otp-input-container{
    display: flex;
    align-items:center;
    gap:8px;
    margin: 7px 0;
}
.otp-input{
    width:40px;
    height: 40px;
    text-align: center;
    caret-color: #000000;
    border-radius: 4px;
    border:1px solid #424242;
    color: #000000;
    background-color: inherit;
    outline: none;
}
.dark-design .otp-input{
    width:40px;
    height: 40px;
    text-align: center;
    caret-color: #ffd200;
    border-radius: 4px;
    border:1px solid #424242;
    color: #ffffff;
    outline: none;
}
.otp-resend{
    font-size: 12px !important;
    color: #444444 !important;
    margin-bottom: 0 !important;
}
.otp-resend a{
    color: #29668b;
}
.dark-design .otp-resend{
    font-size: 12px;
    color: #676767 !important;
    margin-bottom: 0;
}
.dark-design .otp-resend a{
    color: #ffd200;
}

@media (max-width:768px){
    .auth0-overlay{
        padding: 15px;
    }
    .auth0-popup{
        max-width: 100%;
        padding: 40px 15px;
        margin: 100px auto;
    }
    .dark-design .auth0-popup{
        max-width: 100%;
        padding: 40px 15px;
        margin: 100px auto;
    }
    .auth0-close{
        padding: 10px;
    }
    .dark-design .auth0-close{
        padding: 10px;
    }
    .auth0-logo{
        display:none;
    }
    .auth0-heading{
        font-size:18px;
        font-weight: 500;
    }
    .dark-design .auth0-heading{
        font-size:18px;
        font-weight: 500;
    }
    .auth0-input-box{
        margin:30px 0;
    }
    .otp-input{
        width: 35px;
        height: 35px;
    }
    .dark-design .otp-input{
        width: 35px;
        height: 35px;
    }
    .custom-alert {
        max-width: 100%;
    }
}

/* Independence day css */
.ind-stripe{
    width: 100%;
    height: 60px;
    background-image: url(../images/independence\ bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ind-text{
    height: 50px;
    cursor:pointer;
    position: absolute;
    top: 0%;
}
.ind-overlay{
    width:100%;
    height: 100vh;
    position: fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100000000;
    display:flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.ind-stripe::before{
    content: url(../images/ind-confetti.gif);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}
.ind-popup{
    display: none;
    max-width: 590px;
    position: relative;
    margin: 230px auto;
  
}
.ind-close{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
@media (max-width:768px) {
    .ind-stripe img{
        height: 30px;
    }
    .ind-popup{
    
        max-width: 590px;
        position: relative;
        margin: 230px auto;
        padding: 0 15px;
    }
}
input:-webkit-autofill {
    /* background-color: inherit !important; */
    -webkit-box-shadow: 0 0 0px 1000px inherit inset !important;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #9a9a9a !important;
  }
input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}