body, main {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    max-width: 100%;
}

#erreur-message {
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input:not([type="submit"]) {
    width: 100%;
    /* Ajustement de la largeur pour tenir compte des bordures */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    /* Pour inclure la largeur de la bordure dans la largeur totale */
}

input[type="submit"] {
    width: 100%;
    background-color: #164194;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #f39200;
}

#remember-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

#remember-div input {
    width: 30px;
    height: 30px;
}

#a-mot-de-passe-oublie {
    font-weight: bold;
    color: #0000EE;
}

#a-mot-de-passe-oublie:visited {
    color: #0000EE;
}



.password {
    position: relative;
}

.password input {
    padding-right: 35px;
}

.password span {
    position: absolute;
    right: 10px;
    transform: translateY(60%);
    cursor: pointer;
}

#accueil {
    font-weight: bold;
}