body{
    display: flex;
    flex-direction:column;
    align-items: center;
    text-align: center;
    font-family: "Delius", cursive;
    font-weight: 300;
    font-style: normal;
}

h1 {
  max-width: 800px; 
  font-weight: 200;
}

form input {
    display: flex;
    justify-content: space-between;
    border : solid blue; 
    border-radius: 15px;
    padding: 10px;
    margin: 10px; 
}

.mdp_incorrect {
    color: red

}

.large_button:hover {
    background-color: blue;
}
.large_button {
    background-color: cornflowerblue;
    color: white; 
    border : solid blue; 
    border-radius: 15px;
    padding: 10px;
    margin: 10px; 
    width: 210px; 
    cursor: pointer;
}

.button {
    margin : 10px;
}

.name {
    display: flex;
    position: absolute; 
    top: 10px;          
    left: 10px;        
}

.name img {
    width: 50px;
    height: 50px;
}

.logo img {
    width: 100px;
    height: 100px;
}

.search {
    display : flex;
}

.rechercher {
    background-image: url('/assets/images/loupe.png');
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: 18px;
    border-radius: 15px;
    padding: 10px;
    padding-left: 30px;
    margin: 10px; 
    width: 210px; 
}

