/* Centrer le conteneur */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5; /* Fond général */
    font-family: Arial, sans-serif;
}

/* Conteneur principal */
.login-container {
    text-align: center;
    background-color: #d3d3d3; /* Fond gris clair */
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
}

/* Titre */
h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Champs d'entrée */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Bouton de soumission */
button {
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

button:hover {
    background-color: #f0f0f0;
}

button:active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Lien sous le formulaire */
p {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

p a {
    color: #007bff;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}