 :root {
            --primary-color: #2e7d32;
            --secondary-color: #4caf50;
            --accent-color: #0288d1;
            --light-color: #e8f5e9;
            --dark-color: #1a3c34;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f5f5f5;
            height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .login-container {
            max-width: 1000px;
        }
        
        .login-box {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            height: 500px;
        }
        
        .form-panel {
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .logo-panel {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .logo-panel img {
            width: 120px;
            margin-bottom: 20px;
        }
        
        h1 {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        h3 {
            font-weight: 600;
            margin-bottom: 30px;
            color: var(--dark-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            height: 45px;
            border-radius: 5px;
            border: 1px solid #ddd;
            padding-left: 15px;
            font-size: 14px;
        }
        
        .form-control:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        .btn-login {
            background-color: var(--primary-color);
            color: white;
            border: none;
            height: 45px;
            border-radius: 5px;
            font-weight: 500;
            width: 100%;
            margin-top: 10px;
        }
        
        .btn-login:hover {
            background-color: var(--secondary-color);
        }
        
        .medicine-icon {
            font-size: 60px;
            margin-bottom: 20px;
        }
        
        .system-name {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .tagline {
            font-size: 14px;
            opacity: 0.8;
        }