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

        :root {
            --primary-color: #2ab391;
            --primary-dark: #1a1a1a;
            --secondary-color: #f59e0b;
            --success-color: #10b981;
            --error-color: #ef4444;
            --bg-color: #fafafa;
            --card-bg: #ffffff;
            --text-primary: #fff;
            --text-secondary: #6b7280;
            --border-color: #e5e7eb;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        body {
            min-height: 100vh;
            padding: 20px 0;
        }

        .container {
            max-width: 1000px;
            margin: 20px auto;
            padding: 0 20px;
        }

.d-flex{
	display: flex;
	flex: 1 1;
}

.gap-4{
	gap: 15px;
}

.container-wrapper{
	display:flex;flex-wrap: wrap;width:100%;background:#1a1a1a
}

.progress-wrapper{
	width:30%;border-top-left-radius: 10px;border-bottom-left-radius: 10px;padding:40px;
}

        .form-header {
            margin-bottom: 40px;
            color: white;
        }

        .form-header h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .form-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 500px;
            margin: 0 auto;
        }

        .progress-container {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 8px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .progress-bar {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            height: 8px;
            border-radius: 50px;
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .step-indicators {
            display: flex;
			flex-direction: column;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
        }

        .step-indicator {
            width: 100%;
			padding: 1.25em;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .step-indicator.active {
			border-top-right-radius: 10px;
			border-bottom-right-radius: 10px;
			font-weight:900;
			background: linear-gradient(135deg, rgba(42, 179, 145, 0.1), rgba(42, 179, 145, 0.05));
    		border: 1px solid rgba(42, 179, 145, 0.2);
        }

        .step-indicator.completed {
            border-left: 4px solid #2ab391;
			color: #2ab391;
        }

        .upload-progress {
            margin-top: 15px;
            display: none;
        }

        .upload-progress-bar {
            width: 100%;
            height: 8px;
            background: var(--border-color);
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }

        .upload-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color), var(--success-color));
            width: 0%;
            transition: width 0.3s ease;
            position: relative;
        }

        .upload-progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 1.5s infinite;
        }

        .upload-progress-text {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 8px;
        }

        .media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .media-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: #1a1a1a;
            border: 1px dashed rgba(255,255,255, 0.2);
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .media-item:hover {
            border-color: var(--primary-color);
            background: rgba(99, 102, 241, 0.05);
        }

        .media-item.has-content {
            border-style: solid;
            border-color: var(--success-color);
        }

        .media-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .media-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .media-item-remove {
            position: absolute;
            top: 8px;
            right: 8px;
            background: var(--error-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .media-item:hover .media-item-remove {
            opacity: 1;
        }

        .media-upload-placeholder {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding: 20px;
        }

        .media-upload-placeholder .upload-icon {
            font-size: 2rem;
            margin-bottom: 8px;
            display: block;
        }

        .media-counter {
            text-align: center;
            margin-top: 15px;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .video-indicator {
            position: absolute;
            bottom: 8px;
            left: 8px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .media-item.add-image-slot {
            border-color: var(--primary-color);
            background: rgba(99, 102, 241, 0.05);
            border-style: solid;
        }

        .media-item.add-image-slot:hover {
            border-color: var(--primary-dark);
            background: rgba(99, 102, 241, 0.1);
            transform: scale(1.02);
        }

        .media-item.uploading {
            border-color: var(--secondary-color);
            background: rgba(245, 158, 11, 0.05);
        }

        .form-container {
			width: 70%;
            background: var(--primary-dark);
            border-top-right-radius: 10px;
			border-bottom-right-radius: 10px;
            box-shadow: var(--shadow);
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .form-step {
            display: none;
            animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-step.active {
            display: block;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .step-title {
            font-size: 1.8rem;
            color: var(--text-primary);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .step-subtitle {
            color: var(--text-secondary);
            margin-bottom: 30px;
            font-size: 1rem;
        }

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

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

.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.radio-option {
    flex: 1;
    cursor: pointer;
    border: 1px solid var(--c-contrast-150);
    border-radius: 12px;
    padding: 20px 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.radio-option:hover {
    border-color: #2ab391;
    transform: translateY(-2px);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-option input[type="radio"]:checked + .radio-content {
    color: #2ab391;
}

.radio-option input[type="radio"]:checked {
    & ~ * {
        border-color: #2ab391;
    }
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: #2ab391;
    box-shadow: 0 4px 12px rgba(42, 179, 145, 0.15);
}

.radio-content {
    text-align: center;
}

.radio-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.radio-description {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.3;
}

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #fff;
        }

        .required {
            color: var(--error-color);
        }

        input, textarea, select {
            width: 100%!important;
            padding: 12px 16px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .file-upload {
            border: 1px dashed rgba(255,255,255, 0.2);
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            background: #1a1a1a;
        }

        .file-upload:hover {
            border-color: var(--primary-color);
            background: rgba(99, 102, 241, 0.05);
        }

        .file-upload.dragover {
            border-color: var(--primary-color);
            background: rgba(99, 102, 241, 0.1);
        }

        .file-upload-icon {
            font-size: 3rem;
            color: var(--text-secondary);
            margin-bottom: 15px;
        }

        .tag-input-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            border: 1px solid rgba(255,255,255, 0.2);
            border-radius: 12px;
            padding: 8px;
            background: #1a1a1a;
            min-height: 48px;
            align-items: center;
        }

        .tag-input-container:focus-within {
            border-color: var(--primary-color);
            background: #1a1a1a;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .tag {
            background: var(--primary-color);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .tag-remove {
            cursor: pointer;
            font-weight: bold;
        }

        .tag-input {
            border: none;
            outline: none;
            background: transparent;
            padding: 8px;
            flex: 1;
            min-width: 120px;
        }

        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            gap: 20px;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            flex: 1;
            justify-content: center;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-secondary);
            border: 2px solid var(--border-color);
        }

        .btn-secondary:hover {
            background: var(--bg-color);
            color: var(--text-primary);
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }

        .success-message {
            text-align: center;
            padding: 60px 20px;
        }

        .success-icon {
            font-size: 4rem;
            color: var(--success-color);
            margin-bottom: 20px;
        }

        .error-message {
            color: var(--error-color);
            font-size: 0.875rem;
            margin-top: 5px;
            display: none;
        }

        .form-group.error input,
        .form-group.error textarea,
        .form-group.error select {
            border-color: var(--error-color);
        }

        .form-group.error .error-message {
            display: block;
        }

        .loading-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid var(--border-color);
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
			
			.progress-wrapper{
				padding:20px 20px 0 20px;
				width: 100%;
			}
            
            .form-container {
				width: 100%;
                padding: 30px 20px;
            }
            
            .form-header h1 {
                font-size: 2rem;
            }
            
            .step-indicators {
                display: none;
            }
            
            .step-indicator {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            
            .form-navigation {
                flex-direction: column;
            }
			.form-row {
                grid-template-columns: 1fr;
            }
			.radio-group {
				flex-direction: column;
				gap: 12px;
			}

			.radio-option {
				padding: 16px 12px;
			}
        }