*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    width: 100%;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    padding: 20px;
    background-color: #c899ff;
}
section{
    margin: auto;
    margin-top: 40px;
    height: 90%;
    width: 80%;
    display: flex;
    gap: 10px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 10px rgb(37, 37, 37);
}
section .partie1{
    background-color: #7700b4;
    height: 100%;
    width: 40%;
    border-radius: 10px 0 0 10px;
    padding: 15px 50px 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
section .partie1 .logo{
    height: 80px;
    width: 80px;
}
section .partie1 .logo img{
    width: 100%;
    height: 100%;
}
section .partie1 .center{
    height: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.center .titre{
    display: flex;
    align-items: center;
    gap: 10px;
}
.center .titre h2{
    color: #fff;
    font-size: 25px;
}
.center .titre .bar{
    height: 2px;
    width: 50px;
    background-color: #fff;
}
.center .inpt{
    width: 100%;
}
.center .inpt input{
    width: 100%;
    background-color: transparent;
    color: #fff;
    border: none;
    
    margin-left: 7px;
    margin-top: 20px;
    margin-bottom: 5px;
}
.center .inpt input:focus{
    outline: none;
}


.center .inpt input::placeholder{
    color: #fff;
}
.center .inpt div{
    width: 100%;
    height: 1px;
    background-color: #fff;
}
.center .option{
    display: flex;
    justify-content: space-between;
    gap: 5px;
    font-size: 12px;
}
.option .checkb{
    display: flex;
    flex-direction: row;
    color: #fff;
    gap: 5px;
}
.checkb .roud-check{
    display: none;
}
.checkb .roud-check+label{
    border: 2px dashed #fff;
    position: relative;
    display: flex;
    background-color: #7700b4;
    border-radius:50% ;
    width: 15px;
    height: 15px;
    transition: background-color 0.2s ease;

}
.roud-check:checked+label{
    background-color: rgba(0, 0, 0, 0);
    

}
.roud-check + label::after{
    position: absolute;
    left: 1.4px;
    top: 1.4px;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2 ease;
}
.roud-check:checked+label::after{
    opacity: 1;
}
.option a{
    color: #fff;
    text-decoration: none;
}
.center .bouton{
    display: flex;
    gap: 10px;
}
.center .bouton button{
    padding: 5px;
    width: 100px;
    height: 35px;
    border-radius: 40px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    font-weight: 600;
}
.center .bouton #b1{
    border: none;
    background-color: #cd4ff0;
}
.bas{
    color: #fff;
}

/*partie2*/
section .partie2{
    width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
    
}
.partie2 header {
    position: absolute;
    right: 5%;
}
nav ul{
    list-style: none;
    display:flex;
    flex-direction: row;
    align-items: center;
    
    gap: 30px; 
    height: 30px;
}
ul a{
    text-decoration: none;
    color: #686868ce;
}
ul button{
    background: linear-gradient(to left,#c899ff,#7700b4 );
    padding: 5px;
    color: #fff;
    border-radius: 20px 0 20px 20px;
    width: 100px;
    border: none;
}
.partie2 .centre{
    width: 80%;
    position: absolute;
    top: 30%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 0 0 50px;
}
.centre h2{
    position: relative;
    color: #7700b4;
    

}
.centre h2:before{
    position: absolute;
    left: 0px;
    top: 35px;
    height: 4px;
    width: 60px;
    content: "";
    background-color: #7700b4;
}
.centre p{
    text-align: justify;
    color:#686868ce;
}
.centre button{
    width: 100px;
    color: #fff;
    padding: 6px;
    background-color: #7700b4;
    border-radius: 50px;
    border: transparent;
}
.cote{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px;
}
.cote .c{
    background-color: #c5c5c5;
    height: 10px;
    width: 10px;
    border-radius: 50px;
}
.cote .o1{
    height: 15px;
    width: 15px;
}
.cote .o1:hover{
    border: 2px solid #7700b4;
    font-size: 80px;
   
}
::selection{
    color: black;
}