/**
 * Smart Tani Kota Bandar Lampung
 * Auth / Login Stylesheet (Zero CDN / Modular / High-Performance)
 */

        * {
            box-sizing: border-box;
        }
        
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            min-height: 100vh;
            background-color: #06281e;
            background: radial-gradient(circle at 50% 25%, #065f46 0%, #064e3b 50%, #022017 100%);
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 16px;
            position: relative;
        }

        /* Subtle ambient light accents */
        .ambient-light {
            position: fixed;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(140px);
            opacity: 0.25;
            z-index: 1;
        }
        .ambient-light-1 {
            top: -150px;
            left: -150px;
            background: #10b981;
        }
        .ambient-light-2 {
            bottom: -150px;
            right: -150px;
            background: #059669;
        }

        /* Main Executive Card */
        .auth-card {
            width: 100%;
            max-width: 900px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12);
            overflow: hidden;
            position: relative;
            z-index: 10;
        }

        /* Left Showcase Panel */
        .showcase-panel {
            background: linear-gradient(160deg, #064e3b 0%, #043e2f 50%, #02231a 100%);
            color: #ffffff;
            padding: 30px 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }

        .showcase-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
            opacity: 0.5;
        }

        .brand-crest {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .gov-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #a7f3d0;
        }

        .badge-pulse-green {
            width: 6px;
            height: 6px;
            background-color: #34d399;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
            animation: pulse-ring 2s infinite;
        }
        @keyframes pulse-ring {
            0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
            70% { box-shadow: 0 0 0 5px rgba(52, 211, 153, 0); }
            100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: all 0.2s ease;
        }
        .feature-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateX(3px);
        }
        .feature-item-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.14);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: #a7f3d0;
            flex-shrink: 0;
        }

        /* Right Form Panel */
        .form-panel {
            padding: 32px 38px;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-label-custom {
            font-size: 0.8rem;
            font-weight: 600;
            color: #334155;
            margin-bottom: 5px;
        }

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

        .input-icon-box {
            position: absolute;
            left: 13px;
            color: #94a3b8;
            font-size: 0.9rem;
            pointer-events: none;
            transition: color 0.2s ease;
            z-index: 5;
        }

        .form-control-custom {
            width: 100%;
            height: 44px;
            padding: 8px 12px 8px 38px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #0f172a;
            background: #f8fafc;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            transition: all 0.2s ease;
        }
        .form-control-custom:focus {
            background: #ffffff;
            border-color: #059669;
            box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
            outline: none;
        }
        .input-group-custom:focus-within .input-icon-box {
            color: #059669;
        }

        .password-toggle-btn {
            position: absolute;
            right: 8px;
            background: transparent;
            border: none;
            color: #94a3b8;
            padding: 6px 8px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.85rem;
            z-index: 5;
        }
        .password-toggle-btn:hover {
            color: #0f172a;
            background: #f1f5f9;
        }

        .btn-submit-login {
            height: 44px;
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-size: 0.92rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 3px 10px rgba(5, 150, 105, 0.3);
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .btn-submit-login:hover {
            background: linear-gradient(135deg, #047857 0%, #065f46 100%);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
        }
        .btn-submit-login:active {
            transform: translateY(0);
        }



        @media (max-width: 768px) {
            .form-panel {
                padding: 28px 20px;
            }
        }
