/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #22243F;
            --secondary-color: #2D3EE9;
            --accent-color: #A16EE1;
            --text-color: #333;
            --text-light: #666;
            --bg-color: #ffffff;
            --bg-light: #f8f9fa;
            --border-color: #e9ecef;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
            height: 100px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo .logo {
            height: 65px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover,
	.nav-link.active {
    	color: var(--secondary-color);
	}

	.nav-link::after {
    	content: '';
    	position: absolute;
    	width: 0;
    	height: 2px;
    	bottom: -5px;
    	left: 0;
    	background: var(--secondary-color);
    	transition: var(--transition);
	}

	.nav-link:hover::after,
	.nav-link.active::after {
    	width: 100%;
	}

        .nav-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-color);
        }

        /* Login Section */
        .login-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
            padding: 120px 20px 60px;
        }

        .login-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .login-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: white;
            border-radius: 30px;
            box-shadow: var(--shadow-hover);
            overflow: hidden;
            min-height: 600px;
        }

        /* Left Side - Branding */
        .login-branding {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 3rem;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .login-branding::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            transform: rotate(45deg);
        }

        .branding-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .brand-logo {
            margin-bottom: 2rem;
        }

        .logo-large {
            height: 80px;
            width: auto;
        }

        .branding-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .branding-content p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .portal-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .portal-features .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .portal-features .feature-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }

        .portal-features .feature-item i {
            font-size: 1.5rem;
            color: var(--accent-color);
            width: 24px;
            text-align: center;
        }

        .portal-features .feature-item span {
            font-weight: 500;
            font-size: 1.1rem;
        }

        /* Right Side - Login Form */
        .login-form-section {
            padding: 3rem;
            display: flex;
            align-items: center;
        }

        .login-form-container {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .login-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .login-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .login-header p {
            font-size: 1.1rem;
            color: var(--text-light);
        }

        /* Login Form Styles */
        .login-form {
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-color);
        }

        .input-group {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-group i {
            position: absolute;
            left: 1rem;
            color: var(--text-light);
            z-index: 2;
        }

        .input-group input {
            width: 100%;
            padding: 1rem 3rem 1rem 3rem;
            border: 2px solid var(--border-color);
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: inherit;
        }

        .input-group input:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(45, 62, 233, 0.1);
        }

        .password-toggle {
            position: absolute;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 0.5rem;
            z-index: 2;
            transition: var(--transition);
        }

        .password-toggle:hover {
            color: var(--secondary-color);
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        /* Custom Checkbox */
        .checkbox-container {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 0.95rem;
            color: var(--text-color);
        }

        .checkbox-container input {
            display: none;
        }

        .checkmark {
            width: 20px;
            height: 20px;
            border: 2px solid var(--border-color);
            border-radius: 4px;
            margin-right: 0.5rem;
            position: relative;
            transition: var(--transition);
        }

        .checkbox-container input:checked ~ .checkmark {
            background: var(--secondary-color);
            border-color: var(--secondary-color);
        }

        .checkbox-container input:checked ~ .checkmark::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .forgot-password {
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .forgot-password:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid transparent;
            text-align: center;
            cursor: pointer;
            font-family: inherit;
        }

        .btn-primary {
            background: var(--secondary-color);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .login-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            padding: 1rem 2rem;
            margin-bottom: 2rem;
            border: none;
        }

        .login-btn i {
            font-size: 1rem;
        }

        /* Login Footer */
        .login-footer {
            text-align: center;
        }

        .login-footer p {
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .login-footer a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .login-footer a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .security-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 10px;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .security-note i {
            color: var(--secondary-color);
        }

        /* Footer */
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0 1rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-section ul li a:hover {
            color: var(--accent-color);
        }

        .footer-logo .logo-white {
            height: 50px;
            width: auto;
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-info i {
            width: 20px;
            color: var(--accent-color);
            margin-right: 0.5rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: var(--shadow);
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-toggle {
                display: block;
            }

            .login-section {
                padding: 100px 20px 40px;
            }
            
            .login-content {
                grid-template-columns: 1fr;
                border-radius: 20px;
            }
            
            .login-branding {
                padding: 2rem;
                text-align: center;
            }
            
            .branding-content h2 {
                font-size: 2rem;
            }
            
            .portal-features {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 1rem;
            }
            
            .portal-features .feature-item {
                flex: 1;
                min-width: calc(50% - 0.5rem);
                padding: 0.75rem;
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
            
            .portal-features .feature-item span {
                font-size: 0.9rem;
            }
            
            .login-form-section {
                padding: 2rem;
            }
            
            .login-header h1 {
                font-size: 2rem;
            }
            
            .form-options {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .login-branding,
            .login-form-section {
                padding: 1.5rem;
            }
            
            .portal-features .feature-item {
                min-width: 100%;
            }
            
            .login-header h1 {
                font-size: 1.8rem;
            }
            
            .branding-content h2 {
                font-size: 1.8rem;
            }
        }