/* pink = #D498C4
purple = #3E2341
yellow = #FFE900 */

@font-face {
    font-family: 'Arimo';
    src: url('../Arimo/static/Arimo-Bold.ttf');
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Calibri';
}


h1, h2, h3, h4{
    font-family: 'Arimo', 'cursive';
}
.titre-legal{
    color: #3E2341;
    margin-top: 1.5em;
}
.inline-bloc{
    display: flex;
    width: 100%;
}

.block{
    width: 100%;
    margin: auto;
    text-align:center;
    height: 60vh;
    padding-top: 5vh;
    padding-bottom: 15vh;
    border-left:1px solid #3E2341;

}

.main-logo{
    width: 350px;
}

main{
    background-image: url("../images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.input-field{
    display: flex;
    flex-direction: column;
    text-align: left;
    
}

.agree-field{
    display: flex;
}
.agree{
    text-align: justify;
    font-size: 1em !important;
    margin-right: 1em;
}
.checkbox{
    margin-inline: 1em;
}
label{
    font-size: 1.3em;
}
.input-form{
    background-color: rgb(255, 243, 126);
    border: 2px dashed #3E2341;
    outline: 4px solid rgb(255, 243, 126);
    border-radius: 15px;
    padding: 0.5em 1em;
    font-size: 1.2em;

}

.grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: auto;
    gap: 10px;
}

.span-2{
    grid-column: 1/3;
}

.button{
    color: #3E2341;
    background-color: #f1addf;
    padding:0.5em 1em;
    border-radius: 15px;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin-inline: auto;
    font-size: 1.3em;
    margin-block: 10px;
}

.button:hover{
    background-color:#3E2341;
    color: #FFE900;
}

.bg-form{
    background-color: rgb(255,255,255, 0.80);
    padding-block: 0.5em;
    border-radius: 35px;
    padding-inline:2em;
    width: fit-content;
    max-width: 90%;
    margin-inline: auto;
}

footer{
    height: 20vh;
    background-color: #3E2341;
    width: 100%;
    color: #FFE900;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: center;

}

.footer-block{
    padding-top: 1em;
    width: fit-content;
    margin: auto;
}

h2{
    margin-bottom: 1em;
}

footer a {
    color: #3E2341;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3em;
    text-decoration: none;
}
footer a:hover{
    text-decoration: underline;
}
a img{
    width: 50px;
}
.card-tag{
    font-size:1.2em;
    border: 2px dashed #3E2341;
    /* outline: 2px solid #D498C4; */
    outline: 2px solid rgb(243, 215, 240);
    /* background-color: #D498C4; */
    background-color: rgb(243, 215, 240);
    width: fit-content;
    margin-inline: auto;
    padding: 0.2em 1em;
    margin-bottom: 5px;
    border-radius: 10px;
}

.icone{
    width: 30px;
}

.text{
    margin-top: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.red{
    background-color:red !important;
    color: white !important;
}
.green{
    background-color: green;
    color:#FFE900;
}

.alert{
    padding:0.5em 1em;
    font-size: 1em;
    border-radius: 25px;
    font-size: 1.3em;
    margin-block: 0.2em;
    width: fit-content;
    margin-inline: auto;
}
#chat{
    /* position: fixed; */
    /* z-index: 2; */
    left: 150px;
    bottom: 5px;
    margin: auto;
    width: 145px;
}

.legal{
    margin-inline: auto;
    width: 80%;
    margin-bottom: 2em;
    text-align: justify;
}

.left{
    margin-inline: 0 !important;
}

.li-legal{
    margin-left: 2em;
    margin-block: 1em;
}
.li-legal-2{
    margin-left: 4em;
    margin-block: 1em;
}
.underline{
    text-decoration: underline;
}
@media(width < 1000px) {
    .inline-bloc{
        flex-direction: column;
    }
}

@media(width < 800px){
    .grid{
        display: flex;
        flex-direction: column;
    }

    .block{
        height:auto;
    }
    .bg-form{
        margin-inline: 8px;
    }
    footer{
        display: flex;
        flex-direction: column-reverse;
        height: fit-content;
        padding-block: 1em;
    }
}