h1 {
    color: blue;
}


/* Login page customization  */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    font-family: "verdana";
}

.contenair {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: fixed;
    /* postulat de départ */
    top: 50%;
    left: 47%;
    /* à 50%/50% du parent référent */
    transform: translate(-50%, -50%);
    /* décalage de 50% de sa propre taille */
    height: 50%;
    box-shadow: rgba(69, 69, 210, 0.178) -5px 5px, rgba(15, 53, 241, 0.3) -10px 10px, rgba(28, 47, 219, 0.2) -15px 15px, rgba(72, 19, 206, 0.1) -20px 20px, rgba(13, 23, 200, 0.05) -25px 25px;
}

.menu-gauche {
    background-color: #ececf4;
}

.input {
    width: 95%;
    padding: 20px;
    margin-top: -5px;
}

h1 {
    text-align: center;
    margin-top: 20px;
}

.input input {
    width: 100%;
    padding: 8px;
    border: 1px solid;
    margin-top: 8px;
    background-color: floralwhite;
    box-shadow: 3px 3px #0012d3, -1em 0 0.4em olive;
}

.remember {
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    margin-top: -15px;
}

h6 {
    margin-left: 25px;
}

.submit {
    padding: 20px;
    width: 95%;
    margin-top: -20px;
}

.submit input {
    width: 100%;
    height: 35px;
    background-color: hwb(218 6% 0% / 0.839);
    border: none;
    border-radius: 10px;
    color: white;
}