/* CSS from header.php */

        :root {
            --primary: #4F46E5;
            --primary-hover: #4338CA;
            --bg-color: #F3F4F6;
            --text-main: #1F2937;
            --text-muted: #6B7280;
            --card-bg: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        html, body {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .top-bar {
            background-color: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            padding: 0.5rem 2rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        .top-bar-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
            font-weight: 500;
        }

        .top-bar-links a:hover {
            color: var(--primary);
        }

        header {
            background-color: var(--card-bg);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }
        
        .header-main-content {
            padding: 0.6rem 2rem;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.025em;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            transition: color 0.2s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-main);
            font-size: 1.35rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: background-color 0.2s ease, transform 0.2s ease;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            outline: none;
        }

        .mobile-menu-toggle:hover {
            background-color: #f1f5f9;
        }

        .mobile-menu-toggle:active {
            transform: scale(0.95);
        }

        main {
            flex: 1;
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* Mobil Uyumluluk (Responsive Design) */
        @media (max-width: 768px) {
            .top-bar {
                padding: 0.5rem 1rem;
            }
            .top-bar-content {
                flex-direction: row !important;
                justify-content: space-between !important;
                align-items: center !important;
                gap: 0.5rem;
                width: 100%;
            }
            .top-bar-content span {
                font-size: 0.76rem;
            }
            .header-auth {
                gap: 4px !important;
            }
            .header-auth a {
                font-size: 0.72rem !important;
                padding: 4px 8px !important;
            }
            .header-username {
                display: none;
            }

            .top-bar-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

            .header-main-content {
                padding: 0.8rem 1rem;
                position: relative;
            }

            .header-content {
                flex-direction: row !important;
                justify-content: space-between !important;
                align-items: center !important;
                width: 100%;
                gap: 0;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }

            nav#header-nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--card-bg);
                border-top: 1px solid #f1f5f9;
                border-bottom: 2px solid #e2e8f0;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
                padding: 0.75rem 1rem;
                z-index: 999;
                
                /* Transition properties for smooth appearance */
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
            }

            nav#header-nav.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            nav#header-nav ul {
                flex-direction: column;
                gap: 0.25rem;
                width: 100%;
            }

            nav#header-nav ul li {
                width: 100%;
            }

            nav#header-nav ul li a {
                display: block;
                padding: 0.75rem 1rem;
                border-radius: 6px;
                font-weight: 600;
                color: var(--text-muted);
                transition: background-color 0.2s, color 0.2s, padding-left 0.25s ease;
            }

            nav#header-nav ul li a:hover {
                background-color: #f1f5f9;
                color: var(--primary);
                padding-left: 1.5rem;
            }

            main {
                padding: 1.5rem 1rem;
            }
        }
    
/* CSS from footer.php */

        footer {
            background-color: var(--card-bg);
            border-top: 1px solid #E5E7EB;
            margin-top: auto;
            width: 100%;
            overflow: hidden;
            box-sizing: border-box;
        }

        .footer-top {
            padding: 1.5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-col {
            flex: 1;
            min-width: 200px;
        }

        .footer-col h4 {
            color: var(--text-main);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-col ul a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-col ul a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            padding: 1rem 2rem;
            text-align: center;
            border-top: 1px solid #f3f4f6;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            color: var(--text-muted);
            font-size: 0.875rem;
        }
        
        @media (max-width: 768px) {
            .footer-top {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                padding: 1.5rem 1rem;
            }
            .footer-col {
                min-width: 0;
            }
            .footer-col h4 {
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-bottom: 1px solid #e2e8f0;
                padding-bottom: 0.5rem;
                margin-bottom: 0;
                font-size: 1rem;
            }
            .footer-col h4::after {
                content: '\f078';
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                font-size: 0.7rem;
                transition: transform 0.3s;
            }
            .footer-col.active h4::after {
                transform: rotate(180deg);
            }
            .footer-col ul {
                display: none;
                padding-top: 1rem;
            }
            .footer-col.active ul {
                display: flex;
            }
        }
    
/* CSS from index.php */

    .news-section {
        display: grid;
        grid-template-columns: 7fr 3fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        height: 450px; /* Her iki tarafÄ± eÅŸitlemek iÃ§in sabit yÃ¼kseklik */
    }

    .main-slider-container {
        background: var(--card-bg);
        border-radius: 1rem;
        overflow: hidden;
        position: relative;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        height: 100%; /* KapsayÄ±cÄ±ya gÃ¶re uza */
    }

    .slides {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .slide {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .slide.active {
        opacity: 1;
        z-index: 2;
    }

    .slide img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .slide-content {
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        padding: 3rem 2rem 4rem 2rem;
        color: white;
    }

    .slide-content h2 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        color: white;
    }

    .slide-content p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .slider-nav {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        display: flex;
        justify-content: flex-end;
        gap: 0.25rem;
        z-index: 10;
        overflow-x: auto; /* TaÅŸarsa yatay kaydÄ±rma Ã§ubuÄŸu Ã§Ä±kar */
        padding-bottom: 5px; /* KaydÄ±rma Ã§ubuÄŸu iÃ§in boÅŸluk */
    }

    .slider-nav::-webkit-scrollbar {
        height: 4px;
    }
    .slider-nav::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.5);
        border-radius: 4px;
    }

    .slider-nav button {
        width: 28px; height: 28px;
        flex-shrink: 0;
        background: rgba(255,255,255,0.3);
        border: 1px solid rgba(255,255,255,0.5);
        color: white;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 700;
        font-size: 0.85rem;
        transition: all 0.2s;
        backdrop-filter: blur(4px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .slider-nav button.active, .slider-nav button:hover {
        background: var(--primary);
        border-color: var(--primary);
    }

    .side-news {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        height: 100%;
    }

    .side-news-item {
        background: var(--card-bg);
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        flex: 1; /* AlanÄ± eÅŸit bÃ¶lÃ¼ÅŸ */
        transition: transform 0.2s;
        text-decoration: none;
        color: var(--text-main);
    }

    .side-news-item:hover {
        transform: translateY(-4px);
    }

    .side-news-item img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

    .side-news-content {
        padding: 1rem;
    }

    .side-news-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .side-news-content p {
        font-size: 0.85rem;
        color: var(--text-muted);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .content-grid-section {
        display: grid;
        grid-template-columns: 7fr 3fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .main-content-col {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .news-list-item {
        background: var(--card-bg);
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        display: flex;
        transition: transform 0.2s;
        text-decoration: none;
        color: var(--text-main);
    }

    .news-list-item:hover {
        transform: translateY(-4px);
    }

    .news-list-img-wrapper {
        position: relative;
        width: 250px;
        flex-shrink: 0;
        overflow: hidden;
    }

    .news-list-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .news-list-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .news-list-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: var(--primary);
    }

    .news-list-content p {
        font-size: 0.95rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-list-meta {
        font-size: 0.8rem;
        color: #94a3b8;
        font-weight: 600;
        margin-top: auto;
    }

    .sidebar-widget {
        background: var(--card-bg);
        border-radius: 1rem;
        padding: 1.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .sidebar-widget h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f1f5f9;
        color: var(--text-main);
    }

    /* Ä°lanlar Slider CSS */
    .ilanlar-section {
        margin-bottom: 1.5rem;
    }
    .ilanlar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #e2e8f0;
    }
    .ilanlar-header h2 {
        font-size: 1.75rem;
        color: var(--text-main);
        font-weight: 800;
        margin: 0;
    }
    .ilanlar-slider-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }
    .ilanlar-slider {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        padding: 1rem 0;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        flex: 1;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .ilanlar-slider::-webkit-scrollbar {
        display: none;
    }
    .slider-arrow {
        background: var(--primary);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: absolute;
        z-index: 10;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s, background 0.2s;
    }
    .slider-arrow:hover {
        transform: scale(1.1);
        background: #3730a3;
    }
    .slider-arrow.left {
        left: -10px;
    }
    .slider-arrow.right {
        right: -10px;
    }
    .ilan-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
        background: var(--card-bg);
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        color: var(--text-main);
        transition: transform 0.2s;
        display: flex;
        flex-direction: column;
    }
    .ilan-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    }
    .ilan-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }
    .ilan-card-content {
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .ilan-card-content h3 {
        font-size: 1.1rem;
        color: var(--primary);
        margin-bottom: 0.5rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .ilan-card-content p {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .ilan-meta {
        font-size: 0.8rem;
        color: #ef4444; 
        font-weight: 700;
        margin-top: auto;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .news-grid-container {
        margin-bottom: 4rem;
    }

    .news-grid-container h2 {
        font-size: 1.75rem;
        color: var(--text-main);
        margin-bottom: 1.5rem;
        font-weight: 800;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #e2e8f0;
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .news-grid-card {
        background: var(--card-bg);
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        transition: transform 0.2s;
        text-decoration: none;
        color: var(--text-main);
    }

    .news-grid-card:hover {
        transform: translateY(-4px);
    }

    .news-grid-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .news-grid-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .news-grid-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        color: var(--primary);
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-grid-content p {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-grid-meta {
        font-size: 0.8rem;
        color: #94a3b8;
        font-weight: 600;
        margin-top: auto;
    }

    /* Video Section CSS */
    .video-section {
        margin-bottom: 4rem;
    }
    .video-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
    .video-card {
        background: var(--card-bg);
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
        text-decoration: none;
        color: var(--text-main);
        transition: transform 0.2s;
        display: flex;
        flex-direction: column;
    }
    .video-card:hover {
        transform: translateY(-4px);
    }
    .video-thumbnail {
        position: relative;
        width: 100%;
        height: 180px;
    }
    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .video-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: transform 0.2s, background 0.2s;
    }
    .video-card:hover .video-play-btn {
        transform: translate(-50%, -50%) scale(1.1);
        background: white;
    }
    .video-content {
        padding: 1rem;
    }
    .video-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .video-meta {
        font-size: 0.8rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Gazeteler Slider CSS */
.gazete-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.gazete-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    flex: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.gazete-slider::-webkit-scrollbar {
    display: none;
}
.gazete-item {
    flex: 0 0 calc(50% - 0.5rem);
    scroll-snap-align: start;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.gazete-item:hover {
    transform: translateY(-2px);
}
.gazete-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.g-arrow {
    background: var(--primary);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background 0.2s;
}
.g-arrow:hover {
    transform: scale(1.1);
    background: var(--primary-hover);
}
.g-arrow.left {
    left: -15px;
}
.g-arrow.right {
    right: -15px;
}

/* Mobil Uyumluluk */
    @media (max-width: 1024px) {
        .news-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .video-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 768px) {
        .news-section, .content-grid-section {
            grid-template-columns: 1fr;
            height: auto;
        }
        .news-grid {
            grid-template-columns: 1fr;
        }
        .video-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .main-slider-container {
            height: 350px;
        }
        .slider-nav {
            justify-content: flex-start;
        }
        .news-list-item {
            flex-direction: column;
        }
        .news-list-img-wrapper {
            width: 100%;
            height: 200px;
        }
        .ilan-card {
            flex: 0 0 calc(50% - 0.75rem); /* Yan yana 2 tane */
        }
        .ilan-card img {
            height: 110px;
        }
        .ilan-card-content {
            padding: 0.75rem;
        }
        .ilan-card-content h3 {
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
        }
        .ilan-card-content p {
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
        }
        .ilan-meta {
            font-size: 0.7rem;
        }        .gazete-item {
            flex: 0 0 calc(50% - 5px) !important;
        }
        .gazete-item img {
            height: 100px !important;
        }
        .slider-arrow {
            width: 30px;
            height: 30px;
            font-size: 0.8rem;
        }
        .slider-arrow.left {
            left: 0px;
        }
        .slider-arrow.right {
            right: 0px;
        }
    }

/* CSS from user\login.php */

    .auth-wrapper {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dcdde1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}
.auth-form-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    border-right: 1px dashed #ecf0f1;
}
.auth-info-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-form-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}
.auth-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f8fafc;
}
.auth-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.auth-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s, background 0.2s;
}
.auth-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}
.auth-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.auth-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}
.auth-features-list i {
    color: #22c55e;
    font-size: 1.3rem;
}
@media (max-width: 900px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    .auth-form-area {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px dashed #ecf0f1;
        padding-bottom: 24px;
    }
}
@media (max-width: 768px) {
    .auth-wrapper {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dcdde1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}
.auth-form-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    border-right: 1px dashed #ecf0f1;
}
.auth-info-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-form-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}
.auth-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f8fafc;
}
.auth-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.auth-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s, background 0.2s;
}
.auth-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}
.auth-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.auth-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}
.auth-features-list i {
    color: #22c55e;
    font-size: 1.3rem;
}
@media (max-width: 900px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    .auth-form-area {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px dashed #ecf0f1;
        padding-bottom: 24px;
    }
}

/* CSS from user\register.php */

    .auth-wrapper {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dcdde1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}
.auth-form-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    border-right: 1px dashed #ecf0f1;
}
.auth-info-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-form-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}
.auth-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f8fafc;
}
.auth-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.auth-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s, background 0.2s;
}
.auth-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}
.auth-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.auth-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}
.auth-features-list i {
    color: #22c55e;
    font-size: 1.3rem;
}
@media (max-width: 900px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    .auth-form-area {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px dashed #ecf0f1;
        padding-bottom: 24px;
    }
}
@media (max-width: 768px) {
    .auth-wrapper {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dcdde1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}
.auth-form-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    border-right: 1px dashed #ecf0f1;
}
.auth-info-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-form-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}
.auth-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f8fafc;
}
.auth-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.auth-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s, background 0.2s;
}
.auth-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}
.auth-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.auth-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}
.auth-features-list i {
    color: #22c55e;
    font-size: 1.3rem;
}
@media (max-width: 900px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    .auth-form-area {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px dashed #ecf0f1;
        padding-bottom: 24px;
    }
}


/* CSS from user auth pages */
.auth-wrapper {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dcdde1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}
.auth-form-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    border-right: 1px dashed #ecf0f1;
}
.auth-info-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-form-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}
.auth-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f8fafc;
}
.auth-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.auth-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s, background 0.2s;
}
.auth-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}
.auth-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.auth-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}
.auth-features-list i {
    color: #22c55e;
    font-size: 1.3rem;
}
@media (max-width: 900px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    .auth-form-area {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px dashed #ecf0f1;
        padding-bottom: 24px;
    }
}
@media (max-width: 768px) {
    .auth-wrapper {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dcdde1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}
.auth-form-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    border-right: 1px dashed #ecf0f1;
}
.auth-info-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-form-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}
.auth-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f8fafc;
}
.auth-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.auth-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s, background 0.2s;
}
.auth-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}
.auth-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.auth-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}
.auth-features-list i {
    color: #22c55e;
    font-size: 1.3rem;
}
@media (max-width: 900px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    .auth-form-area {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px dashed #ecf0f1;
        padding-bottom: 24px;
    }
}






