/*
But :  Style de la page login
Auteur : Monney Jeremy
Date :   03.05.2024 / V1.0
*/
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
    /* Font*/
    font-family: "IBM Plex Serif", serif;
    font-weight: 400;
     font-style: normal;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.input-field {
    margin: 10px auto;
    padding: 8px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

h1,
h2 {
    text-align: center;
}

button {
    padding: 10px 20px;
    background-color: white;
    border-radius: 5px;
}

button:hover {
    padding: 10px 20px;
    background-color: black;
    color: white;
    border-radius: 5px;
}


/*
.login-container{
    text-align: center;
}*/
