
        /* Google Fonts */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        :root {
            --primary-color: #0ea5e9; /* IT Care Blue */
            --primary-hover: #0284c7;
            --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
            --text-main: #1e293b;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background: var(--bg-gradient);
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 20px;
        }

        /* Background Animated Blobs */
        .blob {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(0,0,0,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .blob-1 { top: -10%; left: -10%; }
        .blob-2 { bottom: -10%; right: -10%; }

        /* Container Design */
        .main-container {
            position: relative;
            z-index: 1;
            display: flex;
            width: 100%;
            max-width: 1100px;
            height: 100%;
            max-height: 700px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            border-radius: 24px;
            overflow: hidden;
        }

        /* Left Branding Panel */
        .brand-panel {
            flex: 1;
            background: linear-gradient(135deg, #0284c7 0%, #0f172a 100%);
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: var(--white);
            position: relative;
        }

        .brand-panel::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('https://www.transparenttextures.com/patterns/cube.png');
            opacity: 0.1;
        }

        .brand-header {
            position: relative;
            z-index: 2;
        }

        /* Logo Area */
        .logo-box {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 40px;
        }

        .logo-svg {
            width: 48px;
            height: 48px;
            fill: none;
            stroke: var(--white);
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        .logo-text span {
            color: #38bdf8;
        }

        .brand-body {
            position: relative;
            z-index: 2;
            margin-bottom: 60px;
        }

        .brand-body h1 {
            font-size: 2.3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .brand-body p {
            color: #bae6fd;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .brand-footer {
            position: relative;
            z-index: 2;
            font-size: 0.85rem;
            color: #94a3b8;
        }

        /* Right Form Panel */
        .form-panel {
            flex: 1.2;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px;
            background: var(--white);
        }

        .form-box {
            width: 100%;
            max-width: 400px;
        }

        .form-header {
            margin-bottom: 35px;
        }

        .form-header h2 {
            font-size: 1.8rem;
            color: var(--text-main);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .form-header p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Form UI Elements */
        .input-group {
            margin-bottom: 22px;
        }

        .input-group label {
            display: block;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 16px;
            color: var(--text-muted);
            font-size: 1rem;
            transition: color 0.2s;
        }

        .input-wrapper input, 
        .input-wrapper select {
            width: 100%;
            padding: 14px 16px 14px 46px;
            border: 1.5px solid var(--border-color);
            border-radius: 12px;
            font-size: 0.95rem;
            color: var(--text-main);
            background-color: #f8fafc;
            outline: none;
            transition: all 0.2s ease;
            appearance: none;
        }

        /* Custom Arrow for select role */
        .input-wrapper select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
        }

        .input-wrapper input:focus,
        .input-wrapper select:focus {
            border-color: var(--primary-color);
            background-color: var(--white);
            box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
        }

        .input-wrapper input:focus + .input-icon,
        .input-wrapper select:focus + .input-icon {
            color: var(--primary-color);
        }

        /* Utilities */
        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.88rem;
            margin-bottom: 28px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            cursor: pointer;
        }

        .remember-me input {
            accent-color: var(--primary-color);
            width: 16px;
            height: 16px;
        }

        .forgot-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .forgot-link:hover {
            text-decoration: underline;
        }

        /* Action Button */
        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.1s;
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
        }

        .submit-btn:hover {
            background-color: var(--primary-hover);
        }

        .submit-btn:active {
            transform: scale(0.98);
        }

        /* Responsive Breakpoint (Tablet & Mobile) */
        @media (max-width: 850px) {
            .main-container {
                flex-direction: column;
                max-height: none;
                height: auto;
                border-radius: 16px;
            }

            .brand-panel {
                padding: 40px 30px;
                text-align: center;
            }

            .logo-box {
                justify-content: center;
                margin-bottom: 20px;
            }

            .brand-body {
                margin-bottom: 0;
            }

            .brand-body h1 {
                font-size: 1.8rem;
            }

            .brand-footer {
                display: none;
            }

            .form-panel {
                padding: 40px 24px;
            }
        }
    