
        :root {
            --customer-primary: #059669; /* Emerald Green */
            --customer-dark: #0f172a;
            --customer-light: #f0fdf4;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #f8fafc;
            min-height: 100vh;
        }

        .login-card {
            border-radius: 1.5rem;
            border: none;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
            overflow: hidden;
        }

        .welcome-side {
            background: linear-gradient(135deg, #065f46 0%, #059669 100%);
            color: white;
            padding: 3rem;
        }

        .form-side {
            background: white;
            padding: 3rem;
        }

        .form-control {
            border: 1.5px solid #e2e8f0;
            padding: 0.8rem 1rem;
            border-radius: 0.75rem;
            transition: all 0.2s ease;
        }

        .form-control:focus {
            border-color: var(--customer-primary);
            box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
        }

        .btn-customer {
            background-color: var(--customer-primary);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .btn-customer:hover {
            background-color: #047857;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.3);
        }

        .social-indicator {
            height: 1px;
            background: #e2e8f0;
            flex-grow: 1;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 1rem;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }
    
        .x-small { font-size: 0.75rem; }
        .form-control:focus {
            background-color: #fff !important;
            box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1) !important;
            border: 1px solid rgba(13, 110, 253, 0.2) !important;
        }
        .input-group-text { border-radius: 12px 0 0 12px !important; }
        .form-control { border-radius: 0 12px 12px 0 !important; }
        /* Fix for when an input doesn't have an icon prefix */
        .form-control:only-child { border-radius: 12px !important; }
        
        .progress-bar { transition: width 0.5s ease; }