:root {
            --primary-green: #2e7d32;
            --dark-green: #1b5e20;
            --light-green: #4caf50;
            --primary-orange: #e65100;
            --dark-orange: #bf360c;
            --light-orange: #ff9800;
            --white: #ffffff;
            --gray-50: #fafafa;
            --gray-100: #f5f5f5;
            --gray-200: #eeeeee;
            --gray-300: #e0e0e0;
            --gray-800: #424242;
            --black: #212121;
        }
        
        body {
            background: url('assets/img/bg-pattern.png'), linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
            background-size: cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            font-family: 'Nunito', sans-serif;
            position: relative;
            overflow-x: hidden;
        }
        
        .container {
            position: relative;
            z-index: 1;
        }
        
        .login-container {
            display: flex;
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
        }
        
        .login-sidebar {
            display: none;
            background: linear-gradient(135deg, rgba(46,125,50,0.9) 0%, rgba(27,94,32,0.95) 100%), url('assets/img/sidebar-pattern.png');
            background-size: cover;
            padding: 3rem;
            color: white;
            flex: 1;
            position: relative;
            overflow: hidden;
        }
        
        @media (min-width: 992px) {
            .login-sidebar {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
        }
        
        .company-logo {
            width: 70px;
            height: auto;
            margin-bottom: 1.5rem;
        }
        
        .sidebar-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }
        
        .sidebar-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            font-weight: 300;
        }
        
        .updates-section {
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 1.5rem;
            backdrop-filter: blur(5px);
            margin-top: auto;
        }
        
        .updates-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        
        .updates-title {
            font-weight: 700;
            margin: 0;
            display: flex;
            align-items: center;
        }
        
        .updates-title i {
            margin-right: 8px;
            color: var(--light-orange);
        }
        
        .update-badge {
            background: var(--primary-orange);
            color: white;
            font-size: 0.7rem;
            padding: 0.25em 0.6em;
            border-radius: 12px;
            margin-left: 8px;
        }
        
        .btn-view-all {
            background: rgba(255,255,255,0.15);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 0.75rem;
            padding: 0.4rem 0.8rem;
            transition: all 0.2s;
        }
        
        .btn-view-all:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-1px);
        }
        
        .update-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .update-item {
            padding-bottom: 1rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            position: relative;
        }
        
        .update-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .update-date {
            opacity: 0.7;
            font-size: 0.75rem;
            margin-bottom: 0.25rem;
        }
        
        .update-content {
            display: flex;
        }
        
        .update-icon {
            background: var(--light-orange);
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
            font-size: 0.8rem;
        }
        
        .update-text {
            flex: 1;
        }
        
        .update-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 0.9rem;
        }
        
        .update-description {
            font-size: 0.8rem;
            opacity: 0.8;
            line-height: 1.4;
        }
        
        .login-main {
            background: var(--white);
            padding: 3rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .form-title {
            color: var(--dark-green);
            font-weight: 900;
            font-size: 2.25rem;
            margin-bottom: 0.25rem;
            letter-spacing: -0.5px;
        }
        
        .welcome-text {
            color: var(--gray-800);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }
        
        .input-group {
            position: relative;
            margin-bottom: 2rem;
        }
        
        .input-group i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-green);
            font-size: 18px;
            z-index: 10;
        }
        
        .form-control-custom {
            height: 60px;
            border-radius: 16px;
            padding-left: 55px;
            border: 2px solid var(--gray-200);
            font-size: 1rem;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.04);
            background-color: var(--gray-50);
        }
        
        .form-control-custom:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.15);
            background-color: var(--white);
        }
        
        .form-control-custom::placeholder {
            color: #bdbdbd;
        }
        
        .btn-login {
            height: 60px;
            border-radius: 16px;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            background: linear-gradient(45deg, var(--primary-orange) 0%, var(--light-orange) 100%);
            border: none;
            box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
            transition: all 0.3s;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230, 81, 0, 0.4);
            background: linear-gradient(45deg, var(--dark-orange) 0%, var(--primary-orange) 100%);
            color: white;
        }
        
        .btn-login:active {
            transform: translateY(1px);
            box-shadow: 0 2px 10px rgba(230, 81, 0, 0.3);
        }
        
        .login-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .forgot-link {
            color: var(--primary-green);
            transition: all 0.2s;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
        }
        
        .forgot-link:hover {
            color: var(--dark-green);
            text-decoration: underline;
        }
        
        .create-account-link {
            color: var(--primary-orange);
            transition: all 0.2s;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
        }
        
        .create-account-link:hover {
            color: var(--dark-orange);
            text-decoration: underline;
        }
        
        /* Mobile Specific Styles */
        @media (max-width: 991.98px) {
            .login-container {
                margin: 1.5rem;
                flex-direction: column;
            }
            
            .login-main {
                padding: 2rem;
            }
            
            /* Show a simplified updates section on mobile */
            .mobile-updates-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-top: 1.5rem;
                color: var(--primary-green);
                background: none;
                border: none;
                font-weight: 600;
                font-size: 0.9rem;
            }
            
            .mobile-updates-btn i {
                margin-right: 8px;
                color: var(--primary-orange);
            }
            
            .update-badge {
                margin-left: 8px;
            }
        }
        
        @media (min-width: 992px) {
            .mobile-updates-btn {
                display: none;
            }
        }
        
        /* All Updates Modal Styles */
        .updates-modal .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }
        
        .updates-modal .modal-header {
            background: linear-gradient(90deg, var(--primary-green) 0%, var(--light-green) 100%);
            color: white;
            border-bottom: none;
            padding: 1.5rem;
        }
        
        .updates-modal .modal-title {
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .updates-modal .modal-title i {
            margin-right: 10px;
            color: var(--light-orange);
        }
        
        .updates-modal .modal-body {
            padding: 1.5rem;
            max-height: 70vh;
            overflow-y: auto;
        }
        
        .updates-modal .modal-update-item {
            border-left: 3px solid var(--primary-orange);
            padding: 1rem 1.5rem;
            margin-bottom: 1.5rem;
            background-color: var(--gray-50);
            border-radius: 0 8px 8px 0;
            transition: transform 0.2s;
        }
        
        .updates-modal .modal-update-item:hover {
            transform: translateX(5px);
        }
        
        .updates-modal .modal-update-item:last-child {
            margin-bottom: 0;
        }
        
        .updates-modal .modal-update-date {
            color: #757575;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
        }
        
        .updates-modal .modal-update-date i {
            font-size: 0.7rem;
            margin-right: 5px;
            color: var(--primary-green);
        }
        
        .updates-modal .modal-update-title {
            font-weight: 700;
            color: var(--dark-green);
            margin: 0.5rem 0;
            font-size: 1.1rem;
        }
        
        .updates-modal .modal-update-description {
            font-size: 0.95rem;
            color: var(--gray-800);
        }
        
        .updates-modal .modal-footer {
            border-top: none;
            padding: 1rem 1.5rem 1.5rem;
        }
        
        .btn-modal-close {
            background: var(--gray-200);
            color: var(--gray-800);
            border: none;
            border-radius: 12px;
            padding: 0.75rem 1.75rem;
            font-weight: 600;
            transition: all 0.2s;
        }
        
        .btn-modal-close:hover {
            background: var(--gray-800);
            color: white;
        }