.msf-19b58093-wrapper {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--bg-color-1, #121212), var(--bg-color-2, #1a2e1f)); /* Fallback for group control background */
	--accent-color: #2ecc71;
}

.msf-19b58093-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.msf-19b58093-container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.msf-19b58093-card {
	background: var(--card-bg-color, rgba(30, 30, 30, 0.85));
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px;
	color: var(--text-color, #e0e0e0);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
	transition: all 0.3s ease;
}

.msf-19b58093-progress-container {
	width: 100%;
	height: 8px;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 4px;
	margin-bottom: 30px;
	overflow: hidden;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.msf-19b58093-progress-bar {
	height: 100%;
	background: var(--button-color, #2ecc71);
	border-radius: 4px;
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	width: 0%;
	box-shadow: 0 0 10px var(--button-color, #2ecc71);
}

.msf-19b58093-steps-wrapper {
	position: relative;
	min-height: 200px;
}

.msf-19b58093-step {
	display: none;
	animation: fadeUp19b58093 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.msf-19b58093-step.active {
	display: block;
}

/* Fallback for editor mode so steps don't just disappear abruptly */
.elementor-editor-active .msf-19b58093-step {
	display: none;
}
.elementor-editor-active .msf-19b58093-step.active {
	display: block;
}

@keyframes fadeUp19b58093 {
	from { opacity: 0; transform: translateY(20px) scale(0.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.msf-19b58093-step-title {
	margin: 0 0 10px;
	font-size: 28px;
	font-weight: 700;
	color: inherit;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.msf-19b58093-step-desc {
	margin: 0 0 25px;
	font-size: 15px;
	opacity: 0.85;
	line-height: 1.5;
}

.msf-19b58093-input-group {
	margin-bottom: 20px;
}

.msf-19b58093-input-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	opacity: 0.9;
	letter-spacing: 0.5px;
}

.msf-19b58093-input {
	width: 100%;
	padding: 14px 18px;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: inherit;
	font-size: 16px;
	outline: none;
	transition: all 0.3s ease;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

/* Select specific styles */
.msf-19b58093-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='white' 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;
	cursor: pointer;
}

.msf-19b58093-select option {
	background: #1e1e1e;
	color: #fff;
}

/* Checkbox specific styles */
.msf-19b58093-checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.msf-19b58093-checkbox-label {
	display: flex !important;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-weight: normal !important;
	margin-bottom: 0 !important;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1); /* Overridden by controls */
	border-radius: 8px;
	background-color: rgba(255, 255, 255, 0.05); /* Overridden by controls */
	transition: all 0.3s ease;
}

.msf-19b58093-checkbox-label:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.msf-19b58093-checkbox-label input {
	display: none;
}

.msf-19b58093-checkbox-custom {
	width: 20px;
	height: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	position: relative;
	background: rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.msf-19b58093-checkbox-label input:checked + .msf-19b58093-checkbox-custom::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	border-radius: 2px;
	background-color: var(--button-color, #2ecc71);
}

.msf-19b58093-checkbox-label input:checked ~ .msf-19b58093-checkbox-text {
	color: var(--button-color, #2ecc71);
}

.msf-19b58093-textarea {
	min-height: 100px;
	resize: vertical;
}

.msf-19b58093-input:focus {
	border-color: var(--button-color, #2ecc71);
	background: rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

.msf-19b58093-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 35px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.msf-19b58093-btn {
	padding: 12px 28px;
	background: var(--button-color, #2ecc71);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.msf-19b58093-btn:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.4);
	filter: brightness(1.1);
}

.msf-19b58093-btn:active:not(:disabled) {
	transform: translateY(1px);
}

.msf-19b58093-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	box-shadow: none;
}

.msf-19b58093-step-indicator {
	font-size: 15px;
	font-weight: 600;
	opacity: 0.8;
	background: rgba(0,0,0,0.3);
	padding: 6px 12px;
	border-radius: 20px;
}

.msf-19b58093-calendly-wrapper {
	margin-top: 20px;
	min-height: 400px;
	width: 100%;
}
