form {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

p {
    margin-top: 20px;
}

legend {
    color: red;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: left;
}

label {
    display: inline-block;
    text-align: left;
    width: 150px;
    vertical-align: top;
    margin: 2px;
    font-size: 14px;
}


em {
    font-weight: bold;
    font-style: normal;
    color: #f00;
}

.selectdefaut {
    color: rgb(49, 37, 37);
}

input:focus {
    background: #eaeaea;
}

input,
textarea,
select,
option {
    width: 300px;
    margin: 3px 0px;
}

input[type=checkbox] {
    display: inline-block;
    width: 30px;;
}
.forfait {
    display: flex;
    flex-wrap: wrap;
}

input[type=submit] {
    background-color: rgb(10, 192, 49);
    border-radius: 5px;
    width: 150px;
    padding: 10px;
    color: white;
    text-align: center;
}
input[type=submit] .delete {
    background-color: rgb(212, 158, 10);
}

input[type=submit]:hover {
    background-color: rgb(0, 24, 5);
    font-size: 16px;
    color: burlywood;
}

input[type=button] {
    background-color: rgb(155, 5, 5);
    border-radius: 5px;
    width: 150px;
    margin-left: 25px;
    padding: 10px;
    color: white;
    text-align: center;
}

input[type=submit] .buttonAnnul {
    background-color: rgb(155, 5, 5);

}


input[type=button]:hover {
    background-color: rgb(88, 1, 1);
    font-size: 16px;
    color: burlywood;
}

#msg_erreur {
    color: red;
    font-style: italic;
}

.price {
    margin-top: -12px;
    font-size: 12px;
    font-style: italic;
}

.sousTitre {
    text-align: left;
    margin-left: 35px;
    padding: 7px 0;
    color: rgb(5, 34, 5);
}

/* Pour tabltte pointage inscrits */
.tabPointage {
    font-size: 18px;
    font-weight: bold;
}


@media screen and (max-width: 768px) {
    form {
        
    justify-content: space-between;
    }

    input[type=button] {
        width: 90px;
    }

    input[type=submit] {
        width: 90px;
    }

    .price {
        margin-top: -3px;
    }

    .label {
        align-content: last baseline;
    }

}