* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Nunito', sans-serif;
        }

        body {
            background-color: #f7f9fc;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Background Shapes */
        .bg-shape-top-left {
            position: absolute;
            top: 20px;
            left: -50px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background-color: #e6f7ff;
            z-index: 0;
        }
        
        .bg-shape-bottom-left {
            position: absolute;
            bottom: -150px;
            left: 100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 40px solid #1890ff;
            z-index: 0;
        }
        
        .bg-shape-top-right {
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: #bae0ff;
            z-index: 0;
        }

        /* Main Container */
        .container {
            width: 900px;
            height: 550px;
            background: #ffffff;
            border-radius: 4px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            display: flex;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        /* Left Side */
        .left-side {
            width: 50%;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
        }
        
        .left-side img {
            width: 100%;
            max-width: 380px;
            height: auto;
        }

        /* Right Side */
        .right-side {
            width: 50%;
            background-color: #1890ff;
            padding: 50px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #ffffff;
        }

        .welcome-text {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }

        .form-group {
            position: relative;
            margin-bottom: 20px;
        }

        .form-group i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ea0a5;
            font-size: 14px;
        }

        .form-control {
            width: 100%;
            padding: 12px 20px 12px 45px;
            border-radius: 30px;
            border: none;
            font-size: 14px;
            color: #333333;
            background-color: #ffffff;
            outline: none;
        }
        
        .form-control::placeholder {
            color: #9ea0a5;
            font-weight: 600;
        }

        .actions {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 10px 0;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s;
            flex: 1;
        }

        .btn-primary {
            background-color: #ffca28;
            color: #333333;
            border: none;
            box-shadow: 0 4px 10px rgba(255, 202, 40, 0.3);
        }
        
        .btn-primary:hover {
            background-color: #ffb300;
            transform: translateY(-2px);
        }

        form {
            width: 100%;
        }
    

                    @keyframes floatIcon {
                        0%, 100% { transform: translateY(0px); }
                        50% { transform: translateY(-12px); }
                    }
                    .animate-float {
                        animation: floatIcon 3.5s ease-in-out infinite;
                    }
                    
                    @keyframes dataFlow {
                        0% { stroke-dashoffset: 16; }
                        100% { stroke-dashoffset: 0; }
                    }
                    .animate-data {
                        animation: dataFlow 0.8s linear infinite;
                    }
                    
                    @keyframes bobble {
                        0%, 100% { transform: translateX(0px); }
                        50% { transform: translateX(8px); }
                    }
                    .animate-bobble {
                        animation: bobble 4s ease-in-out infinite;
                    }

    /* Mobile / Tablet Responsive */
    @media (max-width: 900px) {
        .container {
            width: 95%;
            max-width: 500px;
            height: auto;
            flex-direction: column;
            overflow-y: auto;
            margin: 20px 0;
        }
        .left-side {
            width: 100%;
            padding: 30px;
            display: none; /* Hide illustration on small screens to save space */
        }
        .right-side {
            width: 100%;
            padding: 40px 30px;
            border-radius: 4px;
        }
        .bg-shape-bottom-left, .bg-shape-top-right, .bg-shape-top-left {
            opacity: 0.5; /* reduce distractions on mobile */
        }
    }

    /* Mobile - Very Small Screens */
    @media (max-width: 480px) {
        body {
            font-size: 13px;
        }
        .content-area, .container {
            padding: 12px;
        }
        .header-nav {
            padding: 0 10px;
        }
        .header-right {
            gap: 8px;
        }
        .header-btn {
            padding: 6px;
        }
        .stat-card, .card {
            padding: 16px;
        }
        .split-data {
            grid-template-columns: 1fr;
        }
        .form-row {
            flex-direction: column;
        }
        /* Make inputs and buttons more touch friendly */
        input, select, .btn {
            font-size: 14px; /* prevents iOS zoom */
        }
        .btn-full-mobile {
            width: 100%;
            margin-top: 10px;
        }
        table {
            font-size: 12px;
        }
    }
