* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .login-container {
            display: flex;
            max-width: 1100px;
            width: 100%;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .left-section {
            flex: 1;
            background: linear-gradient(135deg, #2D5BFF 0%, #1E3A8A 100%);
            padding: 60px 50px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .left-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .left-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        /* .logo-icon {
            width: 50px;
            height: 50px;
            background: #FF6B35;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
        } */
         .logo-icon {
            width: 70px;
            height: 70px;
            /* background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%); */
            background: #E2E8F0;
            border-radius: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

         .logo-icon img {
            width: 130px;
            height: 130px;
            object-fit: contain;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 700;
        }

        .logo-pm {
            color: #012c8b; 
        }

        .logo-simulation {
            color: #F97316; 
        }

        .left-content {
            position: relative;
            z-index: 1;
        }

        .left-content h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .tagline {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .feature-text {
            font-size: 15px;
            line-height: 1.5;
        }

        .right-section {
            flex: 1;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h2 {
            font-size: 28px;
            color: #1E3A8A;
            margin-bottom: 8px;
        }

        .form-header p {
            color: #64748B;
            font-size: 15px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #334155;
            margin-bottom: 8px;
        }

        .input-wrapper {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #94A3B8;
            font-size: 20px;
        }

        .form-group input {
            width: 100%;
            padding: 14px 16px 14px 48px;
            border: 2px solid #E2E8F0;
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #2D5BFF;
            box-shadow: 0 0 0 4px rgba(45, 91, 255, 0.1);
        }

        .btn-login {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .btn-login:active {
            transform: translateY(0);
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 30px 0;
            color: #94A3B8;
            font-size: 14px;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #E2E8F0;
        }

        .divider span {
            padding: 0 15px;
        }

        .register-link {
            text-align: center;
            font-size: 15px;
            color: #64748B;
        }

        .register-link a {
            color: #2D5BFF;
            font-weight: 600;
            text-decoration: none;
        }

        .register-link a:hover {
            text-decoration: underline;
        }

        @media (max-width: 968px) {
            .login-container {
                flex-direction: column;
            }

            .left-section {
                padding: 40px 30px;
            }

            .left-content h1 {
                font-size: 26px;
            }

            .right-section {
                padding: 40px 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            body {
                padding: 12px;
                align-items: flex-start;
            }

            .login-container {
                border-radius: 16px;
                max-width: 100%;
            }

            .left-section {
                padding: 28px 20px;
            }

            .left-content h1 {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .tagline {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .features {
                gap: 12px;
            }

            .feature-item {
                margin-bottom: 0;
            }

            .feature-text {
                font-size: 13px;
            }

            .right-section {
                padding: 28px 20px;
            }

            .form-header {
                margin-bottom: 24px;
            }

            .form-header h2 {
                font-size: 22px;
            }

            .form-header p {
                font-size: 13px;
            }

            .form-group {
                margin-bottom: 16px;
            }

            .form-group input {
                padding: 12px 14px 12px 42px;
                font-size: 14px;
            }

            .btn-login {
                padding: 14px;
                font-size: 15px;
            }

            .divider {
                margin: 20px 0;
            }
        }

        @media (max-width: 380px) {
            .left-section {
                padding: 20px 16px;
            }

            .right-section {
                padding: 20px 16px;
            }

            .logo-icon {
                width: 52px;
                height: 52px;
            }

            .logo-icon img {
                width: 100px;
                height: 100px;
            }
        }