h1  {
    font-size: 28px;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-align: center; /* Centrage du texte */
    margin: 0 auto;   /* Centrage du bloc (optionnel) */
}
.image-container {
    display: flex;          /* Alignement flexible */
    justify-content: center; /* Centrage horizontal */ /*
    margin: 20px 0;         /* Espace autour */
}

/* Classe pour l'image elle-même */
.ma-classe-image {
    width: 500px;           /* Largeur fixe */
    height: auto;           /* Hauteur automatique (conserve les proportions) */
/*     border: 2px solid #ccc; /* Bordure grise */
    border-radius: 8px;     /* Coins arrondis */
/*     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre légère */
    transition: transform 0.3s; /* Animation au survol */
}

.ma-classe-image:hover {
    transform: scale(1.05); /* Légèrement agrandi au survol */
}
.foot{
  font-size: 20px;
   color: #FFFFFF;
   text-align: center;
}
a {
    text-decoration: underline;
}
a:link {
    color: #ffdaab;
}
a:visited {
    color: #ffdaab;
}
a:hover, a:focus, a:active {
    color: #ffffff;
}
/* style.css */

th {
    background: #717171;

}

.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
    color: #333;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 120px;
    text-align: center;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 50px auto;
    border: 2;
}

.login-form input[type="submit"] {
    width: 10%;
    padding: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 50px auto;
}

.login-form input[type="submit"]:hover {
    background: #474747;
}
.login-form input[type="submit"]:hover {
    background: #45a049;
}
.error-message {
    color: red;
    margin: 10px 0;
}


