.contact {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    height: 20%;
    width: 25%;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.connexion {
    display: flex;
    flex-direction: column;
    height: 20%;
    width: 25%;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.inscription {
    display: flex;
    flex-direction: column;
    height: 20%;
    width: 25%;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.position-form {
    display: flex;
    flex-wrap:  wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

form h4 {
    text-align: center;
    font-size: 20px;
}

hr {
    margin: 10px 0;
    background-color: hsl(0, 0%, 37%);
    height: 1px;
    width: 100%;
}

.nom-prenom {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.nom-prenom div {
    display: flex;
    flex-direction: column;
}

.nom-prenom div {
    width: 49%;
}

label {
    margin-bottom: 6px;
}

input {
    margin-bottom: 5px;
    margin-top: 10px;
    padding: 5px;
    outline: 0;
    border-radius: 8px;
}

input[type=submit] {
    width: 25%;
    background-color: rgb(236, 236, 236);
    color: #000000;
    transition: all 0.5 ease;
}

input[type=submit]:hover {
    background-color: #c2c2c2;
    color: #000000;
}

.msg-error {
    color: #e00000;
    padding: 5px;
    border: 1px solid #000000;
    border-radius: 16px;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    margin-bottom: 5px;
    font-weight: bold;
}

.edituser {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    height: 20%;
    width: 25%;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form select {
    margin-bottom: 5px;
    margin-top: 10px;
    padding: 5px;
    outline: 0;
    border-radius: 8px;
}

form select option {
    padding: 5px;
    border-radius: 8px;
}