body {
    background-image: url('media/bg5.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}


.motDePasse {
    margin-top: 10px;
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.2);
    filter: drop-shadow(3px 0 1px red) drop-shadow(-3px 0 1px cyan);



}

.motDePasse:hover {
    animation: none;
}

.form {
    width: 280px;
    background-color: whitesmoke;

}


form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 10px;
    align-self: center;
}

input[type="password"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: cyan;
    color: black;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all .4s ease-in-out;

}

input[type="submit"]:hover {
    background-color: black;
    color: white;
    box-shadow: -0.3em 0 red, 0.3em 0 cyan;
}

.form a {
    color: black;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

li {
    list-style: none;
    margin-top: 15px;
    font-size: 12px;
}


@keyframes anaglyphe {
    to {
        filter: drop-shadow(-2px 0 0.5px red) drop-shadow(2px 0 0.5px cyan);
    }
}

@media screen and (max-width: 768px) {

    body {
        background-size: cover;
        background-position: center center;
    }

    .motDePasse {
        display: flex;
        justify-content: center;
        align-items: center;
    }

}