@import url("https://fonts.googleapis.com/css2?family=Monsieur+La+Doulaise&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" );


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins','Sans-serif';
}
.flex{
    display: flex;
    
}
.flex-direction-column{
    flex-direction: column;
 }
.flex-direction-row{
    flex-direction:row;
 }
.flex-direction-column-r{
    flex-direction: column-reverse;
 }
 .flex-direction-row-r{
    flex-direction: row-reverse;
 }
.gap-15{
    gap:15px;
}
.gap-10{
    gap:10px;
}
.gap-5{
    gap:5px;
}

.justify-center{
    justify-content:center;
}
.justify-left{
    
    justify-content: left;
    
}
.justify-right{
    
    justify-content: right;
}
.justify-end{
    justify-content: end;
}
.justify-space-between{
    justify-content: space-between;
}
.align-center{
    align-items: center;
}
.align-start{
    align-items: start;
}
.align-end{
    align-items: end;
}
.min-h-100{
    min-height: 100vh;
}
.min-w-100{
    min-width: 100vw;
}

.w-100v{
    width: 100vw;
}
.h-100v{
    height:100vh ;
}

.w-100p{
    width: 100%;
}

.w-80p{
    width: 80%;
}

.h-100p{
    height:100% ;
}

.w-50p{
    width: 50%;
}
.h-50p{
    height:50% ;
}
.none{
    display: none;
}
.relative{
    position: relative
}
.absolute{
    position: absolute;
}
.fixed{
    position: fixed;
}

.shadow-lg{
    box-shadow: 0 0 100px rgba(0, 0, 0, .2);
}
.shadow-md{
    box-shadow: 0 0 50px rgba(0, 0, 0, .2);
}

.shadow-sm{
    box-shadow: 0 0 30px rgba(0, 0, 0, .2);
}
.rounded-10{
    border-radius: 10px;
}
.rounded{
    border-radius: 3px;
}

.rounded-lg{
    border-radius: 30px;
}
.rounded-sm{
    border-radius: 5px;
}

.rounded-md{
    border-radius: 15px;
}

.rounded-160{
    border-radius: 160px;
}
.overflow-h{
    overflow: hidden;
}
.container{
    position: relative;
    width: 800px;
    height: 550px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    margin: 10px;
    overflow:hidden;
}
.right{
        right:0px;
        position: absolute;
}
.left{
    left:0px;
    position: absolute;
}
.text-center{
    text-align: center;
}

.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-justify{
    text-align: justify;
}
.text-decoration-none{
    text-decoration: none;
}
.text-decoration-underline{
    text-decoration: underline;
}

.border-none{
border: none;
}
.border{
    border: solid 1px #7494ec;
}

.bg-lightblue{
    background: #7494ec;
}
.bg-seagreen{
    background: seagreen;
}
.bg-white{
    background: #fff;
}
.bg-white-e{
    background: #eee;
}
.bg-transparent{
    background: transparent;
}
.outline-none{
    outline: none;
}

.p-5{
    padding: 5px;
}

.p-10{
    padding: 10px;
}
.p-15{
    padding: 15px;
}
.p-20{
    padding: 20px;
}
.p-5l{
    padding-left: 5px;
}

.p-10l{
    padding-left: 10px;
}
.pl-10{
    padding-left: 10px;
}
.pr-10{
    padding-left: 10px;
}
.p-5x{
    padding-left: 5px;
    padding-right: 5px;
}

.p-10x{
    padding-left: 10px;
    padding-right: 10px;
}
.m-10{
    margin: 10px;
}
.m-20{
    margin: 20px;
}
.my-10{
    margin-top:10px ;
    margin-bottom: 10px;
}
.mx-10{
    margin-left:10px ;
    margin-right: 10px;
}
.ml-0{
    margin-left:10px ;
}
.mr-0{
    margin-right:10px ;
}
.mb-10{
    margin-bottom:10px ;
}
.left-0{
    left:0
}
.mt-10{
    margin-top:10px ;
}
.hover-opacity:hover{
    opacity: 0.8;
}
.z-index-1{
    z-index: 1;
}
.z-index-2{
    z-index: 2;
}
.z-index-3{
    z-index: 3;
}
body{
    
    /* background: linear-gradient(90deg,#e2e2e2,#c9d6ff); */
    /* background: #888 url('http://localhost/msafari/background/bg2.jpg'); */
    /*background: #eee;*/
    /* background-size: cover; */
    margin: 0px;

}
.main-page{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* background-color: rgba(0, 255, 255, 0.1); */
    background:#fbfcfc;
}

.form-box{
    width: 50%;
    height: 100%;
    background: #fff;
    color: #333;
    }



 .container h1{
    font-size: 36px;
    margin: -10px 0;
    
 }
.border-aqua{
    border-color: aquamarine;
}
.border-1-aqua{
    border: 1px solid aqua;
}
 .input-box{
    margin: 10px 0;
    width:80% ;
    
 }
.border-1-lightblue{
   border: 1px solid #7494ec;
}

.b-lightblue-10{
    border:10px solid #7494ec;
}

.b-lightblue-5{
    border:5px solid #7494ec;
}

.bt-lightb-10{
    border-top:10px solid #7494ec;
}

.bt-lightblue-8{
    border-top:8px solid #7494ec;
}
 
 
 .input-box input{
    padding: 10px;
    font-size: 16px;
    color: #333;
    font-weight:500;
    background: transparent;
    /* border:1px solid firebrick; */
 }

 .input-box input::placeholder{
    color: #888;
    font-weight: 400;
 }

 .input-box i{
    font-size: 20px;
    color: #888;
 }

 .forgot-link{
    margin: -15px 0 15px;
 }
 .forgot-link a{
    font-size: 18px;
    color: #104ef8;
     }

.btn{
    height: 48px;
  
box-shadow: 0 0 10px rgba(0, 0, 0, .1);
font-size: 16px;
color: #fff;
font-weight:600;
}

.cursor-mouse{
    cursor: pointer;
}

.login-box{
visibility: visible;
right: 0;
transition:.6s ease-in-out;
 }


.container.active .verification , .container.mute-login .registration{
    right: 50%;
    /* right: 100%; */
     transition:.6s ease-in-out; visibility: visible;
 }

.container.mute-reg .newAccountVerification{
    right: 0;
     transition:.6s ease-in-out; 
     visibility: visible;
 }

.registration, .verification,.newAccountVerification{
    visibility: hidden;
    right: -50%;
    transition:.6s ease-in-out;
}



.container.active .login-box,  .container.mute-login  .login-box , .container.mute-reg .login-box{
    /* left: 0; */
    right: -50%;
    visibility: hidden;
 }



.flip-toggle-box, .container.mute-reg .flip-toggle-box{
    width:300%;
    left: -250%;
    transition: .6s ease-in-out;
}
.toggle-box{
    transition: .6s ease-in-out;
}
.container.active .flip-toggle-box ,.container.mute-login .flip-toggle-box {
    left:50%;
}
  

.toggle-panel{

color: #fff;
transition: .1s ease-in-out;
visibility: visible;
}
.toggle-panel.toggle-left,.container.mute-reg .toggle-panel.new-account{
    
    left:0
}


.container.active .toggle-panel.toggle-left ,.container.mute-login .toggle-panel.toggle-left,.toggle-panel.new-account,.container.mute-reg .toggle-panel.toggle-left{
    left: -50%;
}



#country {
    width: 100%; /* Adjust width for dropdown */
    padding: 10px; /* Add padding for better appearance */
    font-size: 16px; /* Increase font size for readability */
}




.toggle-panel .btn{
    width: 160px;
    height: 46px;
    border: 2px solid #fff;
}
.toggle-right{
    right: -50%;
}

.container.active .toggle-panel.toggle-right, .container.mute-login .toggle-panel.toggle-right{
    right: 0;
    transition-delay:.6s ;
    visibility: visible;
}


#loader,#loaderReg{
    visibility: hidden;
}



.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.my-main-page{
    width: 100vw;
    height: 100vh;
    /* padding: 10px; */
    display: grid;
}
    .my-main-container{
        background: #eee;
        margin: 0px;
        flex-direction: column;
       display: flex;
       flex-grow: initial;
   
       

    }
    .my-main-dashboard{
        position: relative;
        background: #fefefe;
        box-sizing: border-box;
        margin: 30px 20px 0px 20px;
        padding: 10px;
        border-radius: 30px 30px;
        width: 80vw;
        display: flex;
        align-self: center;
        flex-direction: column;
        border: 5px solid #ddd;
        border-bottom: 0;
        border-top: 0;
   
    }
    .my-header{
        
        box-sizing: border-box;
        /* background: lightseagreen; */
        /* height: 120px; */
        width: 100%;
        border-radius: 30px 30px 0 0;
        
    }

    .my-header .my-top-menu-bar{
        
        min-height: 60px;
        display: flex;
        flex-grow: 1;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        /* background: greenyellow; */
        margin: 0px;
        border-bottom: 2px solid #ddd;
    }
   
    .my-dashboard-title{
        color: #333;
        font-size: 25px;
        padding: 5px;
        padding-left: 25px;
        font-weight:bolder;
        
        
    }

    .my-main-body{
        padding: 10px;
        display: flex;
        box-sizing: border-box;
        width: 100%;
        min-height: calc(100vh - 280px);
        border-radius:0 0 30px 30px;
    }
    .my-footer-menu{
        position: relative;
        height: 60px;
        /* width: 100%; */
        width:calc(80vw - 80px);
        display: flex;
        
        align-items: center;
        align-self: center;
        justify-content: center;
        border-radius: 0 0 20px 20px;
    }

hr{
    width: 100%;height: 1px;
    display: block;
    bottom: 150px;
}





@media screen  and (max-width:670px){
    .container{
        width: 100vw;
        height:100vh;
        overflow-y:auto;overflow-x:hidden;
        border:none;
    }
    .main-page{
    background: #7494ec;
    }
    .form-box{
        width: 100%;
        height: 70%;
        top:35%;
        bottom: 0;
    }
    .flip-toggle-box{
        width: 100%;
        height: 300%;
        left: 0;
        top: -270%;
        border-radius: 100px;
    }
    .toggle-panel{
        /* border: 2px solid red; */
        width: 100%;
        height: 30%;
        left: 0;
    }
   
    .toggle-panel.toggle-left{
        left: 0;
        top: 0;
    }

    .toggle-panel.new-account,.toggle-panel.toggle-right{
        left: 0;
        top: -30%;
        width: 100%;
        /* visibility: hidden; */
            }

    

.container.mute-reg .flip-toggle-box ,.container.mute-login .flip-toggle-box, .container.active .flip-toggle-box {
    left:0;
    visibility: visible;

}



.container.active .toggle-panel.toggle-right, .container.mute-login .toggle-panel.toggle-right, .container.mute-reg .toggle-panel.new-account{
    right: 0;
    top: 0;
    left: 0;
    visibility:visible;
}

.container.active .toggle-panel.toggle-left ,.container.mute-login .toggle-panel.toggle-left,.toggle-panel.new-account,.container.mute-reg .toggle-panel.toggle-left{
        top: -30%;
        left: 0;
        /* visibility: hidden; */

}
.container.active .verification , .container.mute-login .registration{
    right: 0;
    left: 0;
    /* right: 100%; */
    width: 100%;
    bottom:0
    
 }

 .container.active .verification , .container.mute-login .registration{
    right: 0;
    left: 0;
    /* right: 100%; */
     /* transition:1s ease-in-out; visibility: visible; */
 }


}
