@import url('https://fonts.googleapis.com/css2?family=Klee+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400;1,700&display=swap');
:root{
    --header-height: 3rem;

    --body-color: white;
    --container-color:rgb(243,249,255);
    --title-color:rgb(103, 102, 102);
    --text-color:black;


    --h1-font-size:2rem;
    --h2-font-size:1.7rem;
    --h3-font-size:1.1rem;

    --nornal-font-size:1rem;
    --small-font-size: .87rem;
    --smaller-font-size:.700rem;
    --smallest-font-size:.500rem;

    --black-font-weight:900;
    --extra-bold-font-weight:800;
    --bold-font-weight:700;
    --semi-bold-font-weight:600;
    --medium-font-weight:500;
    --regular-bold-font-weight:400;
    --light-font-weight:300;
    --extraLight-font-weight:200;
    --thin-font-weight:100;


    /* ========font-family */
    --poppins-font-family: "Poppins", sans-serif;
    --montserras-font-family : "Montserrat", sans-serif;
    --roboto-font-family: "Roboto", serif;
    --roboto-condensed-font-family:"Roboto Condensed", sans-serif;;
    --Raleway-font-family : "Raleway", sans-serif;;
    --Klee-One-font-family :"Klee One", sans-serif;



}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}
ul{
    list-style: none;
}

.container{
    max-width: 1115px;
}
body{
    font-family: var(--poppins-font-family);
    font-size: var(--nornal-font-size);
    font-weight: var(--regular-bold-font-weight);
    color: var(--text-color);
    font-optical-sizing: auto;
}

html{
    scroll-behavior: smooth;
}

input,button,body{
    font-family: var(--poppins-font-family);
    font-size: var(--normal-font-size);
}



input,button{
    border:none;
    outline:none;
}

h1,h2,h3,h4{
    color:var(--text-color);
    font-family: var(--poppins-font-family);
    font-weight: var(--extra-bold-font-weight);
}

.reglog__section{
    background-color:rgb(218, 218, 4);
    position: relative;
    height: 100%;
}
.reglog__backgrd-img{
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;

   z-index: -10;
   
}
.reglog__section-title{
    font-size: var(--h1-font-size);
    color:blue;
    font-weight: var(--extraLight-font-weight);
}

.reglog__container{
    display:flex;
    align-items: center;
    justify-content: center;
}

.reglog__content{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* border:1px solid red; */
}

.reglog__form-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    /* border:1px solid black; */
   
    padding: 3rem 0;
}

.reglog__form-from{
    width: 80%;
    min-width: 350px;
    display: grid;
    justify-items: center;
    row-gap: 2rem;
    padding: 2rem 1rem;
    border:1px solid rgba(0, 0, 255, 0.148);
    background-color: white;
    border-radius: 1rem;
}
.reglog__form-title{
    padding: 2rem 0 2rem 0;
}
.reglog__form-title-title{
    font-family: var(--poppins-font-family);
    font-size: var(--h2-font-size);
    color: var(--title-color);
    font-weight: var(--light-font-weight);
    display: inline-block;
    position: relative;
}
.reglog__form-title-title::before {
    position: absolute;
    content: '';
    width: 40%;
    height: 2px;
    background-color: rgba(0, 0, 255, 0.536);
    bottom:-5px;
    left: 0;
}


.reglog__input-unit{
    display: grid;
    row-gap: .5rem;
    width: 100%;
    padding-inline: 1rem;
}
.reglog__label{
    font-family: var(--poppins-font-family);
    color: var(--title-color);
    font-size: var(--small-font-size);
    font-weight: var(--extraLight-font-weight);
}
.reglog__input-container{
    width: 100%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    column-gap: .5rem;
    border-bottom: 2px solid gray;
    padding-bottom: .8rem;
    background-color: white;
    font-size: 1.5rem;
    color: rgb(57, 57, 57);
    border-radius: .5rem .5rem 0 0;
}
.reglog__input{
    font-size: .8rem;
    background-color: transparent;
}
.reglog__input-container i{
    border-right: 1px solid rgba(128, 128, 128, 0.568);
    padding-right: .5rem;
}

.reglog__input-unit-text{
    justify-self:right;
    display: grid;
    justify-items: right;
}
.reglog__input-unit-text span{
    font-size: var(--small-font-size);
    font-weight:var(--extraLight-font-weight);
    color: rgba(76, 1, 1, 0.904);
    font-family:var(--poppins-font-family);
}

.reglog__input-unit-btn{
    width: 100%;
    display: grid;
    justify-items: center;
    padding-top: 2rem;
}
.reglog__input-btn{
    padding: .5rem 1rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 255, 0.317);
    width: 70%;
    border:1px solid transparent;
}
.reglog__input-btn:hover{
    border:1px solid rgba(255, 0, 0, 0.188);
}
.reglog__input-btn:active{
    background-color: goldenrod;
}

.ls__top-nav{
    width:100%;
    min-width: 300px;
}
.ls__top-nav__container{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ls__1{

}
.ls__1-content{
    display: flex;
    column-gap: 1rem;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
    padding-right: .5rem;
}
.ls__1-icon{
    font-size: var(--h2-font-size);
}

.ls__user-content{
    position: relative;
    display: grid;
    padding-right: 1rem;
    padding-left: 1rem;
}
.ls__user-top{
    display: flex;
    align-items: center;
    justify-content: right;
}
.ls__user-content:hover  .ls__user-bottom{
    display: block;
    
}
.ls__user-top span{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.ls__user-bottom{
    position: relative;
    display: none;
}
.ls__user-btm{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;

}
.ls__user-btm-content{
    display: grid;
    background-color: white;
    border-radius: .5rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: .5rem 0;
}
.ls__user-btm-top{
    display: grid;
   justify-content: center;
   justify-items: center;
  
  padding: .5rem;
  /* border-bottom: 1px solid gray; */
  /* border-top: 1px solid gray; */
}
.ls__user-btm-user-img{
    width: 60px;
    height: 60px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.233);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
}
.ls__user-btm-user-details{
    border-top: 1px solid rgba(0, 0, 0, 0.148);
    display: grid;
    row-gap: .5rem;
}
.ls__user-btm-user-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: .5rem;
}
.ls__user-btm-user-details span{
    font-size: var(--nornal-font-size);
    font-family: var(--poppins-font-family);
    color: rgb(38, 38, 38);
    font-weight: var(--thin-font-weight);
}
.ls__user-btm-user-details span:last-child{
    font-weight: var(--semi-bold-font-weight);
}

.ls__user-btm-compte{
    display: grid;
    row-gap: 1.5rem;
    border-top:1px solid gray;
    margin-top: 1rem;
    padding: 1rem .5rem;
    width: 100%;
    margin-bottom: 2rem;
    border-bottom: 1px solid black;
    padding-bottom: 1rem;
}
.ls__user-btm-cmt{
   display: grid;
   grid-template-columns: 1fr 1fr;
   width: 70%;

}
.ls__user-btm-cmt span{
    display: flex;
    justify-content: left;
    align-items: center;
}

.ls__user-btm-login-logout{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 1rem;

}
.ls__user-btm-login-logout span{
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-family: var(--poppins-font-family);
    font-size: var(--h3-font-size);
    font-weight: var(--thin-font-weight);
    color: white;
    background-color: blueviolet;
    width: 100%;
    text-align: center;
    
}

@media  screen and (min-width:305px) {

    
}

@media screen and (min-width:550px){


}

@media screen and (min-width:770px) {
    .reglog__form-from{
        width: 80%;
        max-width: 450px;
    }

    .container{
        margin: 0 auto;
    }
}

@media  screen and (min-width: 1100px) {
    
}