     /* Style de la popup de connexion */
        .login-popup {
            display: flex;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
			font-family:Jost;
        }

        .login-popup form {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
			max-width: 280px;
						font-family:Jost;
        }

        .login-popup input {
            margin-top: 10px;
            margin-bottom: 10px;
            margin-left: 0px;
            margin-right: 0px;
            padding: 8px;
            width: calc( 100% - 40px ) ;
			
						font-family:Jost;
        }

        .login-popup button {
            padding: 10px;
			margin-top: 10px;
            margin-bottom: 0px;
            margin-left: 0px;
            margin-right: 0px;
            background-color: var(--PromoColorVert);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
			width: calc( 50% - 13px ) ;
						font-family:Jost;
        }

        .login-popup .cancel-btn {
            background-color: red;
        }

        .error {
            color: red;
        }
    </style>