        .svg-icon-footer {
            width: 35px;
            height: 35px;
        }

        .h2-menu {
            font-size: 28px;
            margin-top: 5px;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .svg-icon-footer {
                width: 35px;
                height: 35px;
            }

            .h2-menu {
                font-size: 20px;
                margin-top: 5px;
                font-weight: 700;
            }
        }
 
        .div-main {
            width: 40%;
            margin: 25px auto 74px auto;
        }

        .auth-buttons {
            display: grid;
            gap: 10px;
            width: 100%;
            /* ajustable */
        }

        .auth-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            font: 500 15px/1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
            cursor: pointer;
            border: 1px solid #dcdcdc;
            background: #fff;
            transition: transform .06s ease, box-shadow .2s ease, border-color .2s ease;
        }

        .auth-btn:hover {
            box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
        }

        .auth-btn:active {
            transform: translateY(1px);
        }

        .auth-btn svg {
            width: 20px;
            height: 20px;
            flex: 0 0 20px;
        }

        .auth-btn .label {
            flex: 1;
            text-align: center;
            font-size: 17px;
        }

        .auth-btn.google {
            border-color: #e0e0e0;
        }

        .auth-btn.apple {
            border-color: #cfcfcf;
            background: #000;
            color: #fff;
        }

        .auth-btn.apple:hover {
            box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
        }

        .label-sigin {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-weight: 600;
            color: #202020;
            font-size: 22px;
            margin-left: 5px;
        }

        .modalButton {
            width: 100%;
            padding: 8px;
            background: #1dbf73;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modalButton:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(110, 142, 251, 0.4);
        }

        .modalButton:active {
            transform: translateY(0);
        }

        input[type="text"] {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            outline: none;
            transition: border-color 0.3s;
        }

        input[type="password"] {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            outline: none;
            transition: border-color 0.3s;
        }

        .forgot-password {
            font-size: 18px;
            color: #0d6efd;
            text-decoration: underline;
            margin-right: 4px;
            margin-top: 4px;

        }

        .divLogo {
            cursor: pointer;
            display: flex;
            align-items: center;
            margin-left: 3%;
            margin-top: 9px;
        }

        .divLogoOne {
            font-size: 25px;
            margin-left: 3px;
            font-weight: 700;
            font-family: var(--bs-font-sans-serif);
        }

        .divLogoTwo {
            font-size: 25px;
            margin-left: 1px;
            font-weight: 700;
            font-family: var(--bs-font-sans-serif);
            background: linear-gradient(to right, #EA3732, #B52824);
            color: #fff;
            padding: 1px 6px 2px 6px;
            /* même padding top & bottom (3px) et left & right (6px) */
            border-radius: 5px;
            display: inline-block;
            line-height: 1.2;
            /* équilibre le centrage vertical */
        }

        @media (max-width: 600px) {
            .divLogo {
                display: flex;
                align-items: center;
                margin-left: 3%;
                margin-top: 9px;
            }

            .divLogoOne {
                font-size: 20px;
                margin-left: 3px;
                font-weight: 700;
                font-family: var(--bs-font-sans-serif);
            }

            .divLogoTwo {
                font-size: 20px;
                margin-left: 1px;
                font-weight: 700;
                font-family: var(--bs-font-sans-serif);
                background: linear-gradient(to right, #EA3732, #B52824);
                color: #fff;
                padding: 1px 6px 2px 6px;
                /* même padding top & bottom (3px) et left & right (6px) */
                border-radius: 5px;
                display: inline-block;
                line-height: 1.2;
                /* équilibre le centrage vertical */
            }

            .div-main {
                width: 90%;
                margin: 25px auto 50px auto;
            }
        } 