        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html, body {
            height: 100%;
            overflow: hidden;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .container {
            display: flex;
            height: 95vh;
            max-height: 850px;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }
        
        /* Left side styling - Image with overlay text */
        .left-side {
            flex: 1;
            background: linear-gradient(rgba(212, 226, 222, 0.85), rgba(166, 213, 232, 0.9)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }
        
        .left-content {
            max-width: 500px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .logo-icon {
            font-size: 32px;
            margin-right: 12px;
            color: white;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 1px;
            color: white;
        }
        
        .left-side h1 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #2c3e50;
        }
        
        .left-side p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
            color: #34495e;
        }
        
        .features {
            list-style: none;
            margin-top: 40px;
            color: #2c3e50;
        }
        
        .features li {
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }
        
        .features i {
            background-color: rgba(255, 255, 255, 0.15);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
        }
        
        .features div strong {
            font-size: 18px;
            display: block;
            margin-bottom: 5px;
        }
        
        .features div p {
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 0;
        }
        
        .contact-info {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            font-size: 16px;
        }
        
        .contact-info i {
            margin-right: 12px;
            color: white;
            width: 20px;
        }
        
        /* Right side styling - Form */
        .right-side {
            flex: 1;
            background-color: white;
            padding: 10px 50px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        
        .form-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        /* Custom scrollbar for form */
        .form-container::-webkit-scrollbar {
            width: 6px;
        }
        
        .form-container::-webkit-scrollbar-track {
            background: rgba(221, 221, 221, 0.3);
            border-radius: 10px;
        }
        
        .form-container::-webkit-scrollbar-thumb {
            background: rgba(32, 116, 201, 0.5);
            border-radius: 10px;
        }
        
        .right-side h2 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .right-side h2 i {
            color: #20c997;
        }
        
        .right-side p {
            color: #7f8c8d;
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            flex: 1;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .form-group label i {
            color: #20c997;
        }
        
        input, textarea, select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e1e5ee;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }
        
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2064c9;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
        }
        
        textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
        }
        
        /* File Upload Styles */
        .file-upload-container {
            margin: 25px 0;
        }
        
        .file-upload-label {
            display: block;
            margin-bottom: 12px;
            font-weight: 600;
            color: #333;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .file-upload-label i {
            color: #2064c9;
        }
        
        .upload-area {
            position: relative;
            border: 3px dashed #cbd5e0;
            border-radius: 12px;
            padding: 10px 5px;
            text-align: center;
            background-color: #f8fafc;
            transition: all 0.3s ease;
            cursor: pointer;
            margin-bottom: 20px;
        }
        
        .upload-area:hover, .upload-area.drag-over {
            border-color: #2064c9;
            background-color: #f0fffa;
            transform: translateY(-2px);
        }
        
        .upload-area i {
            font-size: 48px;
            color: #20c997;
            margin-bottom: 15px;
        }
        
        .upload-area h4 {
            font-size: 18px;
            color: #2d3748;
            margin-bottom: 8px;
        }
        
        .upload-area p {
            color: #718096;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .upload-area small {
            color: #a0aec0;
            font-size: 12px;
        }
        
        .upload-input {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0;
            cursor: pointer;
        }
        
        .paste-area {
            margin-top: 20px;
            padding: 15px;
            border: 2px dashed #e2e8f0;
            border-radius: 8px;
            background-color: #f7fafc;
        }
        
        .paste-area input {
            width: 100%;
            padding: 12px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 14px;
        }
        
        .paste-area input::placeholder {
            color: #a0aec0;
        }
        
        .file-preview-container {
            margin-top: 25px;
        }
        
        .file-preview-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .file-preview-title i {
            color: #20c997;
        }
        
        .file-previews {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }
        
        .file-preview {
            background: white;
            border-radius: 10px;
            padding: 15px;
            border: 2px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .file-preview:hover {
            border-color: #20c997;
            box-shadow: 0 5px 15px rgba(32, 201, 151, 0.1);
            transform: translateY(-3px);
        }
        
        .file-icon {
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        .file-name {
            font-size: 13px;
            color: #2d3748;
            text-align: center;
            word-break: break-word;
            width: 100%;
        }
        
        .file-size {
            font-size: 11px;
            color: #718096;
            margin-top: 5px;
        }
        
        .remove-file {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #e53e3e;
            color: white;
            border: none;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
        }
        
        .remove-file:hover {
            background: #c53030;
            transform: scale(1.1);
        }
        
        /* Button Styles */
        .button-group {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid #f1f1f1;
        }
        
        .submit-btn, .back-btn {
            flex: 1;
            padding: 16px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .submit-btn {
            background: linear-gradient(to right, #2066c9, #2066c9);
            color: white;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(32, 201, 151, 0.3);
        }
        
        .back-btn {
            background: #6c757d;
            color: white;
            text-decoration: none;
            text-align: center;
        }
        
        .back-btn:hover {
            background: #5a6268;
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(108, 117, 125, 0.3);
        }
        
        /* File Type Colors */
        .file-preview[data-type="image"] .file-icon {
            color: #e53e3e;
        }
        
        .file-preview[data-type="pdf"] .file-icon {
            color: #e53e3e;
        }
        
        .file-preview[data-type="document"] .file-icon {
            color: #2b6cb0;
        }
        
        .file-preview[data-type="video"] .file-icon {
            color: #805ad5;
        }
        
        /* Progress Bar */
        .progress-bar {
            height: 6px;
            background-color: #e2e8f0;
            border-radius: 3px;
            margin-top: 10px;
            overflow: hidden;
            display: none;
        }
        
        .progress {
            height: 100%;
            background: linear-gradient(to right, #20c997, #1abc9c);
            width: 0%;
            transition: width 0.3s ease;
        }
        
        /* Status Message */
        .status-message {
            padding: 12px;
            border-radius: 8px;
            margin: 15px 0;
            display: none;
            align-items: center;
            gap: 10px;
            animation: fadeIn 0.3s ease;
        }
        
        .status-message.success {
            background-color: #f0fff4;
            border: 1px solid #9ae6b4;
            color: #276749;
        }
        
        .status-message.error {
            background-color: #fff5f5;
            border: 1px solid #fc8181;
            color: #c53030;
        }
        
        .status-message i {
            font-size: 18px;
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive design */
        @media (max-width: 1200px) {
            .container {
                height: 95vh;
                max-height: 800px;
            }
            
            .left-side h1 {
                font-size: 36px;
            }
            
            .right-side h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
                height: 95vh;
                max-height: none;
            }
            
            .left-side, .right-side {
                flex: none;
                height: 50%;
            }
            
            .left-side {
                padding: 30px;
            }
            
            .right-side {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            
            .button-group {
                flex-direction: column;
                gap: 15px;
            }
            
            .left-side h1 {
                font-size: 32px;
            }
            
            .features li {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .features i {
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 576px) {
            body {
                padding: 10px;
            }
            
            .container {
                height: 97vh;
                border-radius: 10px;
            }
            
            .left-side, .right-side {
                padding: 25px;
            }
            
            .left-side h1 {
                font-size: 28px;
            }
            
            .right-side h2 {
                font-size: 24px;
            }
            
            .upload-area {
                padding: 25px 15px;
            }
        }
        
        /* Notification */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            background: linear-gradient(to right, #20c997, #1abc9c);
            color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateX(150%);
            transition: transform 0.5s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .notification i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        .notification-close {
            margin-left: 15px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 18px;
        }
