#new-commande {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-content: center;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: auto;
}
#new-commande form {
    display: flex;
    flex-direction: column;
    width: 700px;;
    border: none;
    border-radius: 20px;
    padding: 30px;
    background-color: white;
}
#new-commande form .ligne-commande {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    
}
#new-commande form .ligne-commande .element {
    display: flex;
    flex-direction: column;
    width: 30%;
}
#new-commande form .ligne-commande .element2 {
    display: flex;
    flex-direction: column;
    width: 48%;
}
#new-commande form label {
    font-weight: bolder;
    margin-bottom: 10px;
}
#new-commande form input[type='text'], #new-commande form input[type='date'], #new-commande form textarea, #new-commande form input[type='file'], #new-commande form input[type='number'], #new-commande form select, #new-commande form input[type='email'], #new-commande form input[type='password'] {
    width: 100%;
    margin-bottom: 10px;
    padding: 7px;
    border-radius: 5px;
    border: none;
    background-color: #EFEDF0;
}
#new-commande form textarea {
    height: 150px;
}
input[type='submit'] {
    margin: 0px auto;
    width: 100%;
    background-color: #55cc55;
    padding: 7px;
    color: white;
    font-size: 15px;
    border-radius: 10px;
    border: solid 2px #55cc55;
}
input[type='submit']:hover {
    color: #55cc55;
    background-color: white;
    cursor: pointer;
}
.petit-form {
    height: 500px;
}
#barre-de-recherche input[type="search"] {
    margin: auto;
}
