@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import "annimation.css";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arvo", serif;
}
body{
    background-color: #ffffff;
}
.text-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.column {
    float: left;
    padding: 10px;
    height: 100vh;
}
.text-center{
    font-family: "Arvo", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 3em;
    margin-top: 50px;

}
.left {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 75%;
    background: linear-gradient(90deg, #ffffff, #589fef, #e3ecff);
    background-size: 300% 300%;
    animation: movingGradient 10s infinite alternate ease-in-out;
    backdrop-filter: blur(10px);
}

.right img{
    position: absolute;
    right: 20px;
    top: 20px;
    width: 70px;

}
.right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 25%;
    padding: 20px;
    background-color: white;

}
.titre h1{
    font-size: 3em;
    font-weight: 500;
    font-style: normal;
    padding: 30px;
    color: #000000;

}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
}
.formulaire{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 20px;
}
.formulaire a{
    text-decoration: none;
    color: black;
    font-size: 1.2em;
    font-family: "Arvo", serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 20px;
}
/* Style des champs de formulaire */
input.form-control {
    display: flex;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}
.form-group {
    width: 100%;
}

/* Style des cases à cocher */
input.form-check-input {
    margin-right: 10px;
}


button.btn {
    width: 100%;
    padding: 10px;
    margin-top:50px;
    background-color: rgb(27, 111, 211);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    font-family: "Arvo", serif;
    font-weight: 400;
    font-style: normal;

}

button.btn:hover {
    color: #ffffff;
    background-color: rgb(63, 140, 232);
}
#btn{
    border-bottom: 2px solid black;
}
.Politiquebutton{
    display: flex;
    align-items: center;
    font-size: .8em;
    cursor: pointer;
    width: 100%;
    padding: 20px 20px 0px 20px;
    background-color: white;
    border:none;
    outline: none;
    color: rgb(27, 111, 211);

}
.Politiquebutton span{
    color: red;
}

.tel{
    display: none;
}
@media (min-width:1100px)  and (max-width: 1400px) {
    .left{
       width: 70%;
    }
    .right {
        width: 30%;
    }
}
@media (min-width:780px)  and (max-width: 1100px) {
    .left{
        display: none;
    }
    .right {
        width: 100%;
    }
}

@media screen and (max-width: 780px) {
    .left{
        display: none;
    }
    .right {
        width: 100%;
    }
}
