 /* --- ALAP BEÁLLÍTÁSOK ÉS A GÖRGETÉS JAVÍTÁSA --- */
        * {
            box-sizing: border-box;
        }

        /* --- ÁLTALÁNOS STÍLUSOK --- */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Roboto', sans-serif;
            background-image: url("http://trevia.hu/img/bg.jpg");
            background-repeat: repeat;
        }

        /* --- MODERNEBB SZÖVEGSTÍLUSOK --- */
        h1 {
            background: linear-gradient(135deg, #0d5f2d, #0C3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
            font-size: 70px;
            font-weight: 900;
            letter-spacing: -2px;
            line-height: 1.1;
            text-shadow: none;
            padding: 0;
            margin: 0 0 0.5rem 0;
        }

        h2 {
            color: #166534;
            font-size: 28px;
            font-weight: 300;
            letter-spacing: 1px;
            text-shadow: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
        }

        p {
            line-height: 1.7;
            color: #374151;
            font-weight: 400;
        }


        /* --- ELRENDEZÉS --- */
        .main-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            text-align: center;
            padding: 1rem;
            background: linear-gradient(145deg, rgba(74, 222, 128, 0.6), rgba(5, 150, 105, 0.6));
        }

        .bejelentkezes {
            padding: 2rem;
            width: 100%;
            max-width: 1200px;
            min-height: 500px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.79);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(9.9px);
            -webkit-backdrop-filter: blur(9.9px);
            border: 1px solid rgba(255, 255, 255, 0.65);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .logindoboz {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .loginkep {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }

        .belepes {
            flex: 1;
            text-align: left;
        }


        /* --- KOMPONENSEK --- */
        .google-btn {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            width: 240px;
            height: 50px;
            background-color: #fff;
            border: 1px solid #ddd;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            border-radius: 22px;
            transition: box-shadow 0.2s ease;
            text-decoration: none;
            color: #444;
            margin-top: 30px;
        }

        .google-btn:hover {
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        }

        .google-icon-wrapper {
            height: 100%;
            width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid #ddd;
        }

        .google-icon {
            width: 20px;
            height: 20px;
        }

        .btn-text {
            flex: 1;
            text-align: center;
            font-size: 16px;
            font-weight: 500;
            margin: 0 auto;
        }

        /* --- RESZPONZÍV SZABÁLYOK MOBILNÉZETRE --- */
        @media (max-width: 992px) {
            .main-container {
                padding: 0;
            }

            .bejelentkezes {
                flex-direction: column;
                min-height: 100vh;
                border-radius: 0;
				 padding: 10px;
                justify-content: center;
             
            }

            .logindoboz {
    
            }

            .loginkep {
                width: calc(128% + 4rem); /* Kép kilógatása */
                max-width: none;
                margin-right: -2rem;
			   margin-top: -4rem;
                margin-bottom: -3rem;
            }

            .belepes {
                width: 100%;
                max-width: 500px;
                text-align: center;
                padding-top: 0; 
            }

            h1 {
                font-size: 4.9rem; /* Nagyobb logó */
            }

            h2 {
                font-size: 24px;
            }

            .google-btn {
                margin: 10px auto 0;
            }
        }
		
		        /* Értesítés stílusai */
        #logout-notification {
            display: flex;
            align-items: center;
            background-color: #22c55e; /* Tailwind green-500 */
            color: white;
            padding: 0.75rem 1.25rem; /* py-3 px-5 */
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); /* shadow-lg */
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.5s ease-out;
        }
        #logout-notification.show {
            opacity: 1;
            transform: translateX(0);
        }
        #logout-notification.hide {
            opacity: 0;
        }