/* Styling for the form */
form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    color: #0056b3;
}

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

a:hover {
    text-decoration: underline;
}

label {
    display: block;
    margin: 20px 0 10px;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    width: 80%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}

input[type="submit"]:hover {
    background-color: #004494;
}

/* Tooltip container */
.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-icon {
    width: 20px;
    cursor: help;
}

/* Tooltip text */
.tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -110px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

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

input[readonly] {
    background-color: #e9ecef; /* Couleur de fond grise pour indiquer qu'il est en lecture seule */
    color: #495057; /* Couleur de texte plus sombre pour une meilleure lisibilité */
    cursor: not-allowed; /* Changement de curseur pour indiquer qu'on ne peut pas modifier */
}

.toggle-password {
            cursor: pointer;
            margin-left: 5px;
        }