
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');




.signup-btn {
    border-radius: 20px;
    border: 1px solid #FF4B2B;
    background-color: #FF4B2B;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    transition: 0.2s linear;
    cursor: pointer;
}

.signup-btn:active {
    transform: scale(0.9);
}

.signup-btn:focus {
    outline: none;
}

.signup-btn:hover{
    border: 1px solid rgb(255, 49, 118);
    background-color: rgb(255, 49, 118);
}


.signup-btn.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

.signup-btn.ghost:hover {
    border: 1px solid rgb(240, 240, 240);
    background-color: rgb(255, 49, 49);
}

form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0 0 0;
    width: 100%;
}

.form-div-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 
            0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 40%;
    max-width: 390px;
    /* max-width: 100%; */
    min-height: 480px;
}

.signup-form-div-container{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 
            0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    padding: 20px 30px !important;
    /* width: 40%; */
    /* max-width: 390px; */
    /* max-width: 100%; */
    /* min-height: 480px; */
}

.form-container {
    top: 0;
    padding: 25px 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container {
    left: 0;
    width: 100%;
    z-index: 2;
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.signup-form{
    padding: 0 10px;
}

.signup-container{
    max-width: 790px;
}

.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

.signup-label{
    display: block;
    text-align: start;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.custom-form-check{
    margin-top: 10px;
    border: 1px solid rgb(223, 223, 223);
}

.radio-label{
    padding-left: 5px;
}

.required-star{
    color: red;
}

.otp-card{
    width: 350px;
    max-height: 500px;
    box-shadow: 0px 10px 15px 16px rgba(0,0,0,0.1);
}

.error-message-div{
    width: 100%;
    max-height: 0;
    opacity: 0;
    background-color: rgba(255, 0, 0, 0.233);
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.error-message-div p{
    margin: 14px 16px;
}

.message-text{
    font-size: 15px;
    font-weight: 500;
    color: red;
}

.error-message-div.error-message-show{
    max-height: 50px;
    opacity: 1;
}

/* select and dropdown starts */
.select2-container{
    margin-top: 10px !important;
}

.select2-container--default .select2-selection--single{
    border: 1px solid rgb(235, 235, 235) !important;
    padding: 12px 15px !important;
    height: 50px !important;
    background-color: #eee !important;
}

.select2-container--default .select2-selection--multiple{
    border: 1px solid rgb(235, 235, 235) !important;
    padding: 12px 15px !important;
    background-color: #eee !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice{
    padding: 0 5px 0 20px!important;
    background-color: #e3dcef;
    color: #090624;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 10px !important;
    right: 5px !important;
}

.select2-container--open .select2-dropdown--below{
    border-radius: 5px !important;
    border: 1px solid rgb(235, 235, 235) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field{
    border-radius: 4px !important;
    border: 1px solid rgb(235, 235, 235) !important
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #707070 !important;
    font-size: 15px !important;
    line-height: 25px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered{
    display: block !important;
    color: #707070 !important;
    font-size: 15px !important;
    line-height: 25px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]{
    color: rgb(240, 240, 240) !important;
    font-size: 14px !important;
    background-color: #054c75 !important;
}

.select2-search.select2-search--inline{
    display: contents;
}

.select2-results__option{
    font-size: 14px !important;
}

.select2-container--default .select2-results__option{
    margin-bottom: 1px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(0, 116, 0, 0.452); /* Set the background color for selected items */
    color: #fff; /* Set the text color for selected items */
}

.select2-selection__rendered {
    text-align: left !important;
}

.select2-selection__choice__remove{
    background-color: rgba(255, 0, 0, 0.219) !important;

}

.select2-selection__choice__remove{
    color: #8f0000 !important;
}
/* select and dropdown ends */

.error-message{
    padding: 5px;
    color: red;
    width: 100%;
    background-color: rgba(216, 0, 0, 0.315);
}

/* Date picker starts */
.datepicker{
    z-index: 999 !important;
}

.date-input {
    /* background-color: #fff;
    border: none; */

    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

.datepicker-dropdown {
    top: 0;
    left: 0;
}

.datepicker table tr td.today, span.focused {
    border-radius: 50% !important;
}

thead tr:nth-child(2) {
    /* background: rgb(62,7,75); */
    background: rgb(7, 59, 88);
    background: linear-gradient(180deg, rgba(7, 59, 88, 1) 0%, rgb(4, 68, 83) 63%);
}

thead tr:nth-child(3) th {
    /* color: #400053 !important; */
    color: rgb(7, 59, 88);
    padding-top: 20px;
    padding-bottom: 10px;
}

.dow, .old-day, .day, .new-day {
    width: 40px !important;
    height: 40px !important;
    border-radius: 0px !important;
}

.old-day:hover, .day:hover, .new-day:hover, .month:hover, .year:hover, .decade:hover, .century:hover {
    border-radius: 50% !important;
    background-color: #eee;
}

.day.active {
    border-radius: 50% !important;
    background-image: linear-gradient(#054c75, #0c5580) !important;
    color: #fff !important;
}

.prev, .next, .datepicker-switch {
    border-radius: 0 !important;
    padding: 20px 10px !important;
    text-transform: uppercase;
    font-size: 20px;
    color: #fff;
    opacity: 0.8; 
}

.prev:hover, .next:hover, .datepicker-switch:hover {
    background-color: inherit !important;
    opacity: 1;
}
/* Date picker ends */

.eye-div{
    position: relative;
}

.password-toggle{
    position: absolute;
    font-size: 15px;
    font-weight: 700;
    /* display: flex; */
    width: auto;
    top: 20px;
    right: 12px;
    cursor: pointer;
    z-index: 999;
}

.confirm_password-toggle{
    position: absolute;
    font-size: 15px;
    font-weight: 700;
    /* display: flex; */
    width: auto;
    top: 20px;
    right: 12px;
    cursor: pointer;
    z-index: 999;
}

.password-toggle i{
    font-weight: 600;
}

.confirm_password-toggle i{
    font-weight: 600;
}

.error-border{
    border: 1px solid red;
    box-shadow: 0px 0px 3px 2px rgba(255,0,0,0.3);
}

/* Popup container starts */
.popup-container{
    position: fixed;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    transition: linear 0.3s;
    z-index: 999999999;
}

.popup-container.show {
    pointer-events: auto;
    opacity: 1;
    transition: 0.3s;
}

.delete-popup-container{
    position: fixed;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    transition: linear 0.3s;
    z-index: 99;
}

.delete-popup-container.show {
    pointer-events: auto;
    opacity: 1;
    transition: 0.3s;
}

.popup {
    position: relative;
    background-color: rgb(30, 56, 59);
    /* max-width: 600px;
    max-height: 500px; */
    border-radius: 10px;
    padding-left: 60px;
    padding-right: 60px;
    height: 235px;
    width: 300px;
}

.delete-popup {
    position: relative;
    background-color: rgb(59, 30, 30);
    /* max-width: 600px;
    max-height: 500px; */
    border-radius: 10px;
    padding-left: 60px;
    padding-right: 60px;
    height: 250px;
    width: 300px;
}

.success-tick{
    position: absolute;
    top: -50px;
    height: 150px;
    width: 150px;
}

.registration-success-div{
    position: absolute;
    top: 120px;
}

.registration-success-div p span{
    color: rgb(245, 245, 245);
}

.close-icon{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.successful-text{
    font-size: 18px;
}

.gender-radio-div{
    position: relative;
    padding: 10px 0;
    height: 50px;
}

.gender-radio-div label{
    position: absolute;
    left: 35px;
    cursor: pointer;
}

.gender-radio-div input{
    height: 15px;
    width: 15px;
    position: absolute;
    left: 25px;
    top: 13px;
    cursor: pointer;
}
/* Popup container ends */

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }
    
    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container{
    transform: translateX(-100%);
}

.overlay {
    background: #FF416C;
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #FF4B2B, #FF416C);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.social-container {
    margin: 20px 0;
}

.social-container a {
    border: 1px solid #DDDDDD;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
}

/* .left-ad-div{
    width: 30%;
}

.right-ad-div{
    width: 30%;
} */

.right-ad-div, .left-ad-div{
    /* display: flex;
    justify-content: center; */
    /* padding: 10px; */
    /* border: 1px solid #DEE2E6; */
    border-radius: 5px;
    background-color: #fff;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    margin-bottom: 20px;
    width: 180px;
}

.right-ad-div img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.left-ad-div img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.main-content-div{
    flex-grow: 1; /* Take up the remaining space */
}


.change-number{
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.change-number-btn{
    color: rgb(240, 240, 240);
    padding: 5px 10px;
    border-radius: 4px;
    background-color: #090624;
}

.change-number:hover{
    color: rgb(14, 14, 156);
}

.change-number-outer-div{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.change-number-show{
    max-height: 200px;
}


/* @media (max-width: 992px) {
    .left-ad-div{
       width: 20%;
    }

    .form-div-container{
        width: 60%;
    }

    .right-ad-div{
        width: 20%;
    }
} */

@media (max-width: 992px) {
    .left-ad-div{
       display: none;
    }

    .form-div-container{
        width: 100%;
    }

    .right-ad-div{
        display: none;
    }
}

@media (max-width: 792px) {
    .forgot-password-phone-form{
        padding: 0 20px;
    }
}

@media (max-width: 540px) {
    .container{
        padding: 0;
    }
    
    .signup-container{
        padding: 0;
    }
}
