.formulaire-validation-compte {
    max-width: 650px;
    margin: auto;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.formulaire-validation-compte h2 {
    color: #333;
    text-align: center;
}

.formulaire-validation-compte label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

.formulaire-validation-compte input[type="email"],
.formulaire-validation-compte input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.formulaire-validation-compte button {
    width: 100%;
    background: #0073aa;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.formulaire-validation-compte button:hover {
    background: #005f87;
}
.acceptation-cgu-cgv {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    text-align: center;
}

.acceptation-cgu-cgv a {
    color: #0073aa;
    text-decoration: underline;
}

.acceptation-cgu-cgv a:hover {
    color: #005a87;
}
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    flex: 1;
    padding-right: 40px; /* Espace pour l'icône */
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
}

.toggle-password img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.toggle-password img:hover {
    opacity: 1;
}
