 
        @font-face {
            font-family: 'Faragostar';
            src: url('../fonts/faragostar-standard-font.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'Faragostar';
            src: url('../fonts/faragostar-standard-font_Bold.woff') format('woff');
            font-weight: bold;
            font-style: normal;
        }
        
        * {
            font-family: 'Faragostar', sans-serif;
        }

        /* متغیرهای رنگی بر اساس تصویر */
        :root {
            --primary-color: #2b8479;
            --primary-dark: #00786d;
            --tab-active-bg: #e6f4f1;
            --link-color: #3b82f6;
            --text-dark: #1f2937;
            --text-gray: #4b5563;
            --text-light: #9ca3af;
            --border-color: #e5e7eb;
            --bg-color: #f9fafb;
        }

        /* ریست کردن استایل‌های پیش‌فرض */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'faragostar', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-dark);
            line-height: 1.5;
        }

        /* ساختار اصلی صفحه */
        .layout-container {
            display: flex;
            height: 100vh;
            overflow: hidden;
        }

        /* --- پنل سمت راست (سبز رنگ) --- */
        .panel-side {
            display: none; /* در موبایل مخفی است */
            background-color: var(--primary-color);
            color: white;
            position: relative;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .gov-logo {
            position: absolute;
            top: 2rem;
            right: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .gov-logo svg { width: 40px; height: 40px; margin-bottom: 4px; }
        .gov-logo .title-sm { font-size: 10px; }
        .gov-logo .title-md { font-size: 12px; font-weight: bold; }

        .main-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10;
        }

        .main-logo svg { width: 96px; height: 96px; margin-bottom: 16px; }
        .main-logo h2 { font-size: 1.125rem; font-weight: bold; margin-bottom: 8px; }
        .main-logo h1 { font-size: 1.875rem; font-weight: 800; }

        .bg-watermark {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            opacity: 0.1;
            pointer-events: none;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .bg-watermark .shape {
            width: 800px; height: 800px;
            background-color: white;
            transform: rotate(45deg);
        }

        /* --- پنل سمت چپ (فرم ورود) --- */
        .form-side {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: white;
        }

        .form-wrapper {
            width: 100%;
            max-width: 400px;
            padding: 2rem;
        }

        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-header h2 { font-size: 1.5rem; font-weight: bold; margin-bottom: 0.5rem; }
        .form-header p { font-size: 0.875rem; color: var(--text-light); }

        /* تب‌ها */
        .tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .tab {
            flex: 1;
            padding: 1rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            background-color: white;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .tab:hover { background-color: var(--bg-color); }
        .tab span { font-size: 0.75rem; font-weight: bold; color: var(--text-gray); text-align: center; }
        .tab svg { width: 24px; height: 24px; color: var(--text-light); }

        .tab.active {
            background-color: var(--tab-active-bg);
            border-color: transparent;
        }
        .tab.active:hover { background-color: #d4ece7; }
        .tab.active span { color: var(--primary-dark); }
        .tab.active svg { color: var(--primary-dark); }

        /* فرم */
        .input-group { margin-bottom: 1rem; }
        .input-group input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 0.875rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
        }
        .input-group input::placeholder { color: var(--text-light); }
        .input-group input:focus { border-color: var(--primary-color); }

        .forgot-password {
            display: flex;
            justify-content: flex-end;
            margin-top: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .forgot-password a {
            font-size: 0.75rem;
            color: var(--link-color);
            text-decoration: none;
        }
        .forgot-password a:hover { text-decoration: underline; }

        .submit-btn {
            width: 100%;
            background-color: var(--primary-dark);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 0.75rem;
            font-size: 1rem;
            font-weight: bold;
            font-family: inherit;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .submit-btn:hover { background-color: #00665d; }

        .register-link {
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-light);
        }
        .register-link a {
            color: var(--link-color);
            text-decoration: none;
            margin-right: 4px;
        }
        .register-link a:hover { text-decoration: underline; }

        /* ریسپانسیو (برای صفحات بزرگتر از 992px) */
        @media (min-width: 992px) {
            .panel-side {
                display: flex;
                width: 50%;
            }
            .form-side {
                width: 50%;
            }
        }
   