body, html {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0;
    padding: 0;
    height: 100%;
}

form {
    background-color: #FFFFFF;
    padding: 20px;
    border: 1px solid aliceblue;
    border-radius: 8px;
    box-shadow: 7px -7px 20px 1px #FFFFFF;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#l-password {
    font-weight: 700;
    margin-bottom: 8px;
}

#password {
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    padding: 5px;
    margin: 2px 0px;

    transition: border 0.4s, margin 0.4s;
}

#password:focus {
    outline: none;
    border: 3px solid #13dd99;
    margin: 0;
    
    transition: border 0.1s, margin 0.1s;
}

#inline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    
    margin-top: 3px;
}

#inline * {
    cursor: pointer;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: 12px;
}

/* Pour Edge et Chrome */ /* Pour désactiver l'oeil par défaut des champs password */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-clear-button,
input[type="password"]::-webkit-password-toggle {
    display: none;
}