/* PAGE */
body {
    margin: 0;
    background-image: url(../../../assets/images/serpe/FDaccueil.jpg);
    background-size: cover;
    object-fit: cover;
    position: relative;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    margin: 20px 20px 10px 20px;
}

.left {
    display: flex;
    justify-content: flex-start;
}

.right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.search_logo, .flecheRetour {
    height: 100px;
    padding: 0 30px;
} 

.search_form {
    display: flex;
    align-items: center;
    border-radius: 20px 0 0 20px;
    height: 50px;
}

.search_form:focus-within {
    box-shadow: 10px 10px 20px #C1C1C3;
    border-radius: 20px;
    background-color: #C1C1C3;
    
}

.recherche {
    width: 400px;
    height: 50px;
    padding: 0 25px;
    border: none;
    border-radius: 20px 0 0 20px;
    background-color: #C1C1C3;
    font-size: 20px;
}

.recherche:focus-visible {
    outline: none;
}

.button {
    border: none;
    padding: 0;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

.imgButton {
    background: #C1C1C3;
    width: 50px;
    height: 50px;
    border-radius: 0 20px 20px 0;
    padding: 5px;
}


@media screen and (max-width: 1500px) {
    .losange_desktop {
        display: none;
    }

}