

        /* Modal styles 
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0,0,0);
            background-color: rgba(0,0,0,0.4);
            padding-top: 60px;
        }

        .modal-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 400px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }*/
        .H_titre_MyModal {
          font-family: 'Arial', sans-serif;
          font-size: 1.8em;
          font-weight: bold;
          margin-bottom: 15px;
          color: var(--couleur4);
          display: block;
          width: 100%;
          word-wrap: break-word; /* Gère le passage à la ligne pour les titres longs */
        }

        input[type="email"], input[type="password"] {
            width: 95%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .message {
            margin: 10px 0;
            text-align: center;
            color: white;
        }

        .toggle-link {
            font-family: 'Arial', sans-serif;
            font-size: 1em;
            color: var(--couleur4);
            margin-top: 20px;
            display: block;
            width: 100%;
            word-wrap: break-word; /* Gère le passage à la ligne */
            color: var(--couleur4);
            text-decoration: none;
        }
        
        .toggle-link:hover {
              color: var(--couleur2);
        }
        .Button_MyModalAuth {
          margin-top: 20px;
          background-color: var(--couleur2); /* Couleur bleu pour le bouton */
          color: var(--couleur1);
          border: none;
          padding: 15px 25px;
          font-size: 1.2em;
          border-radius: 5px;
          cursor: pointer;
          width: 100%; /* Largeur 100% pour mobile */
        }

        .Button_MyModalAuth:hover {
          background-color: var(--couleur5); /* Teinte plus foncée au survol */
          color: var(--couleur2);
        }