
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1f3342 0%, #2a4a5f 100%);
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow: hidden;
        }

        .container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            max-width: 1100px;
            max-height: 650px;
            width: 100%;
            height: 90vh;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }



        .company-info {
            text-align: center;
            max-width: 450px;
        }
        .company-info img {
            width: 350px;
            height: 100px;
        }

        .company-tagline {
            text-align: center;
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.5;
        }

        .security-features {
            text-align: left;
            margin-top: 30px;
        }

        .security-features h3 {
            font-size: 16px;
            margin-bottom: 18px;
            font-weight: 600;
            opacity: 0.95;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            opacity: 0.9;
        }

        .feature-icon {
            font-size: 18px;
        }

        .feature-icon img {
            height: 25px;
            width:25px;
        }

        .form-section {
            padding: 45px 50px;
            overflow-y: auto;
            background: #fafbfc;
        }

        .form-section::-webkit-scrollbar {
            width: 6px;
        }

        .form-section::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .form-section::-webkit-scrollbar-thumb {
            background: #3a5fb0;
            border-radius: 3px;
        }

        .form-header {
            margin-bottom: 30px;
        }

        .form-header h2 {
            color: #1f3342;
            font-size: 26px;
            margin-bottom: 6px;
            font-weight: 700;
        }

        .form-header p {
            color: #6b7280;
            font-size: 13px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            color: #1f3342;
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 13px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid #d1d5db;
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.2s ease;
            font-family: inherit;
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3a5fb0;
            box-shadow: 0 0 0 3px rgba(58, 95, 176, 0.1);
        }

        .form-group textarea {
            resize: none;
            height: 70px;
        }

        .phone-group {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 10px;
        }

        .amount-input-group {
            display: grid;
            grid-template-columns: 60px 1fr;
            gap: 0;
        }

        .currency-prefix {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #3a5fb0;
            color: white;
            font-weight: 600;
            font-size: 16px;
            border-radius: 4px 0 0 4px;
            border: 1.5px solid #3a5fb0;
        }

        .amount-input-group input {
            border-radius: 0 4px 4px 0;
            border-left: none;
        }

        .amount-input-group input:focus {
            border-left: 1.5px solid #3a5fb0;
        }

        .submit-btn {
            width: 100%;
            padding: 13px;
            background: linear-gradient(135deg, #3a5fb0 0%, #2a4a8f 100%);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            box-shadow: 0 4px 12px rgba(58, 95, 176, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(58, 95, 176, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        @media (max-height: 700px) {
            .container {
                max-height: 580px;
            }
            .form-section {
                padding: 35px 40px;
            }
            .form-header h2 {
                font-size: 22px;
            }
            .form-group {
                margin-bottom: 12px;
            }
            .form-row {
                margin-bottom: 12px;
                gap: 12px;
            }
        }

        @media (max-width: 968px) {
            .container {
                grid-template-columns: 1fr;
                max-height: 90vh;
            }

            .image-section {
                display: none;
            }

            .form-section {
                padding: 40px 30px;
            }
        }

        @media (max-width: 480px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .phone-group {
                grid-template-columns: 100px 1fr;
            }
        }
