    .auth-container {
        max-width: 400px;
        margin: 50px auto;
        border: 2px solid #c3aa89f5;
        border-radius: 8px;
        padding: 0 20px 20px 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
 .auth-container:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.1); /* Ajout d'une ombre attrayante */
    border-color: #1C4690; /* Bordure colorée pour mettre en valeur */
 }
    .auth-container h2 {
        background-color: #c3aa89f5;
        padding: 20px;
        margin: 0 -20px; /* Compense le padding du parent */
        border-radius: 6px 6px 0 0;
        text-align: center;
        font-family: 'trajan';
        box-sizing: border-box; /* Assure que la largeur inclut les bordures et le padding */
    }
    .auth-container h2:hover {
        background-color: #1C4690;
        color: white;
    }


    .auth-container form {
        display: flex;
        flex-direction: column;
    }

    .auth-container label {
        margin-top: 10px;
    }

    .auth-container input {
        padding: 8px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-family: 'montserrat';
    }
    .auth-container input:hover {
        box-shadow: 0 0 10px 2px black;
        transform: scale(1.01);
    }
    .auth-container button {
        margin-top: 15px;
        padding: 10px;
        background-color: #c3aa89f5;
        color: black;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-family: "trajan";
        font-weight: bold;
    }

    .auth-container button:hover {
        background-color: #1C4690;
        color: white;
    }

    .toggle-links {
        text-align: center;
        margin: 10px 0;
    }

    .toggle-links a {
        text-decoration: none;
        color: #1C4690 !important;
        font-weight: bold;
    }

    .error-message {
        color: red;
        text-align: center;
        margin-bottom: 10px;
    }
    /* Conteneur pour l'input avec l'icône */
.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* Style de l'input */
.input-container input {
    width: 100%;
    padding-right: 40px; /* Espace pour l'icône */
    padding-left: 10px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
/* Style de l'icône */
.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

/* Icône SVG */
.toggle-password svg {
    fill: gray;
    transition: fill 0.3s;
}

.toggle-password svg:hover {
    fill: black; /* Couleur de l'icône au survol */
}
