body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    margin: 0;
    padding: 0;
}

body>div {
    flex: 1;
    height: 100vh;
    width: 100vh;

}


h1 {
    font-size: 45px;
}

.centrage_image {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    /* Pour centrer horizontalement */
    align-items: center;
    /* Pour centrer verticalement */
}

.centrage_image img {
    max-width: 70vh;
    max-height: 70vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 30vh;
}

.login-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    /* Définissez une largeur maximale pour le formulaire */
    height: 100%;
    display: flex;
    flex-direction: column;
    /* Pour empiler les éléments à l'intérieur */
    justify-content: center;
    /* Pour centrer verticalement */
    align-items: center;
    /* Pour centrer horizontalement */
    margin: 0 auto;
    /* Pour centrer horizontalement sur la page */
}

/* .gauche{
    background-color: red;
}
.droite{
    background-color: violet;
} */

form input {
    height: 35px;
    margin-top: 8px;
    text-indent: 10px;
    width: 100%;
}

form {
    width: 100%;
    max-width: 500px;
    /* Définissez une largeur maximale pour le formulaire */
    padding: 20px;
    /* Ajoutez un peu d'espace à l'intérieur du formulaire */
    border-radius: 8px;
    /* Ajoutez une bordure arrondie au formulaire */
}

label {
    font-size: 22px;
    display: flex;

}

input {
    border: none;
    border-bottom: 2px solid #333333;
    outline: none;
    background-color: transparent;
    margin-bottom: 20px;
    padding-left: 8px;

}

button {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: #271549;
    width: 150px;
    height: 32px;
    float: right;
    /* Pour aligner le conteneur à droite */
    border: none;
    box-shadow: 1px 1px 3px black;
}

@media (max-width: 600px) {
    .gauche{
        display: none;
    }
     

}

/* Css pour formulaire rendu */

.checkbox{
    display: flex;
    font-size: 10px;
    width: 700px;
}
.checkbox input{
    width: 10px;
}

.rendu form {
    width: 90%;
    max-width: 500px;
    /* Définissez une largeur maximale pour le formulaire */
    height: 80%;
    padding: 20px;
    /* Ajoutez un peu d'espace à l'intérieur du formulaire */
    border-radius: 8px;
    /* Ajoutez une bordure arrondie au formulaire */
}

.rendu button{
    top: 90%;
    position: absolute;
}

.rendu select{
    margin-top: 10px;
    width: 500px;
    height: 30px;
}


/* Css pour formulaire élève */

.eleve form {
    width: 90%;
    max-width: 500px;
    /* Définissez une largeur maximale pour le formulaire */
    height: 80%;
    padding: 20px;
    /* Ajoutez un peu d'espace à l'intérieur du formulaire */
    border-radius: 8px;
    /* Ajoutez une bordure arrondie au formulaire */
}

.eleve select{
    margin-top: 10px;
    margin-bottom: 10px;
    width: 500px;
    height: 30px;
}

.eleve button{
    width: 300px;
}

.eleve.droite{
    height: 80%;
    margin-top: 100px;
    margin-left: 300px;
}

/* Css pour depot */

.depot button{
    width: 300px;
}

.depot.droite{
    margin: 20%;
    height: 100px;
}

/* Css pour formulaire Suppression élève */

.droite.deleteuser{

    margin-top: 350px;
    height: 50%;
}

.deleteuser select{
    margin-top: 10px;
    margin-bottom: 10px;
    width: 500px;
    height: 30px;
}

.deleteuser button{
    width: 300px;
}
