        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            display: flex;
            min-height: 100vh;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            overflow: hidden;
        }

        /* Container for two halves */
        .container {
            display: flex;
            width: 100%;
            height: 100vh;
        }

        /* Left side - Login Form */
        .login-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
            z-index: 2;
            overflow-y: auto;
        }

        .logo-container {
            margin-bottom: 2.5rem;
            text-align: center;
            width: 100%;
            max-width: 400px;
        }

        .logo {
            margin-bottom: 1.5rem;
        }

        .logo img {
            max-width: 500px;
            height: auto;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .company-name {
            font-size: 1.8rem;
            color: #1a38e2;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .login-form {
            width: 100%;
            max-width: 400px;
        }

        .input-group {
            margin-bottom: 1.5rem;
        }

        .input-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1rem;
            color: #34495e;
            font-weight: 500;
        }

        .input-group input {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .input-group input:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .remember {
            display: flex;
            align-items: center;
        }

        .remember input {
            margin-right: 8px;
            accent-color: #3498db;
        }

        .forgot a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s;
        }

        .forgot a:hover {
            color: #2980b9;
            text-decoration: underline;
        }

        .login-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #2980b9, #1a252f);
        }

        .additional-info {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #7f8c8d;
            text-align: center;
            line-height: 1.6;
        }

        /* Right side - Modern Animated Background */
        .image-container {
            flex: 1.2;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .image-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                    transparent 30%,
                    rgba(255, 255, 255, 0.1) 50%,
                    transparent 70%);
            animation: shimmer 3s infinite;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 20%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 20%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 30%;
            left: 30%;
            animation-delay: 4s;
        }

        .image-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 2rem;
            max-width: 500px;
        }

        .image-content h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .image-content p {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
            }

            .login-container {
                order: 2;
                padding: 1.5rem;
            }

            .image-container {
                order: 1;
                min-height: 300px;
                display: none;
            }

            .logo-placeholder {
                height: 100px;
                font-size: 1rem;
            }

            .company-name {
                font-size: 1.2rem;
            }

            .image-content h2 {
                font-size: 2rem;
            }

            .image-content p {
                font-size: 1rem;
            }

            .logo img {
                max-width: 352px;
                height: auto;
                filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
            }
        }

        @media (max-width: 576px) {
            .remember-forgot {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .logo-container {
                margin-bottom: 1.5rem;
            }

            .input-group input {
                padding: 12px;
            }

            .login-btn {
                padding: 12px;
            }

            .logo-placeholder {
                height: 80px;
                font-size: 0.9rem;
            }
        }

        /* Animation for form elements */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-form>* {
            animation: fadeIn 0.6s ease-out forwards;
        }

        .input-group {
            animation-delay: 0.1s;
        }

        .remember-forgot {
            animation-delay: 0.2s;
        }

        .login-btn {
            animation-delay: 0.3s;
        }

        .additional-info {
            animation-delay: 0.4s;
        }

        /* Logo styling instructions */
        .logo-instruction {
            margin-top: 10px;
            font-size: 0.8rem;
            color: #95a5a6;
            text-align: center;
        }