body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    margin-top: 50px;
}

h1 {
    text-align: center;
    font-size: 28px; /* Agrandit le titre principal */
    margin-bottom: 10px;
}

h2 {
    text-align: center;
    font-size: 18px; /* Rétrécit le sous-titre du formulaire */
    margin-bottom: 20px;
}

p {
   text-align: center;
   width: 80%;
   max-width: 100%;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-size: 14px;
    position: relative;
}

input {
    width: 400px;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.info-icon {
    width: 25px;
    height: 25px;
    margin-left: 5px;
    cursor: pointer;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    width: 600px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position the tooltip above the icon */
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-text img {
    max-width: 600px;
    border-radius: 5px;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.warning-message {
    background-color: #fff3cd;
    border: 2px solid #ffeeba;
    color: #856404;
    padding: 10px;
    margin: 15px 0;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

button {
    background-color: #007BFF; /* Couleur de fond */
    color: white; /* Couleur du texte */
    padding: 15px 30px; /* Espacement interne */
    border: none; /* Pas de bordure */
    border-radius: 5px; /* Coins arrondis */
    font-size: 18px; /* Taille de la police */
    cursor: pointer; /* Curseur en forme de main */
    transition: background-color 0.3s, transform 0.2s; /* Animation de transition */
    margin-bottom: 10px;
}

button:hover {
    background-color: #0056b3;
}

nav {
            background-color: #007BFF;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 17px 0;
        }

        nav ul li a {
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            background-color: #0056b3;
        }

        nav ul li a:hover {
            background-color: #007BFF;
        }