.rockit-msf-wrap {
	max-width: 640px;
	margin: 0 auto;
	font-family: inherit;
	box-sizing: border-box;
}
.rockit-msf-wrap *, .rockit-msf-wrap *::before, .rockit-msf-wrap *::after {
	box-sizing: border-box;
}

.rockit-msf-progress {
	background: #e9e9ec;
	border-radius: 999px;
	height: 6px;
	overflow: hidden;
	margin-bottom: 16px;
}
.rockit-msf-progress-bar {
	background: #2271b1;
	height: 100%;
	transition: width 0.3s ease;
}

.rockit-msf-steps-nav {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 24px;
}
.rockit-msf-step-dot {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #e9e9ec;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
}
.rockit-msf-step-dot.is-active {
	background: #2271b1;
	color: #fff;
}

.rockit-msf-step { display: none; }
.rockit-msf-step.is-active { display: block; animation: rockit-msf-fade 0.25s ease; }

@keyframes rockit-msf-fade {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

.rockit-msf-step-title {
	margin: 0 0 16px;
	font-size: 20px;
}

.rockit-msf-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.rockit-msf-field { flex: 1 1 100%; }
.rockit-msf-field-half { flex: 1 1 calc(50% - 8px); }

.rockit-msf-field label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 14px;
}
.rockit-msf-field .req { color: #d63638; }

.rockit-msf-field input[type="text"],
.rockit-msf-field input[type="email"],
.rockit-msf-field input[type="tel"],
.rockit-msf-field input[type="number"],
.rockit-msf-field input[type="date"],
.rockit-msf-field select,
.rockit-msf-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 15px;
}
.rockit-msf-field textarea { min-height: 90px; resize: vertical; }

.rockit-msf-field.rockit-msf-error input,
.rockit-msf-field.rockit-msf-error select,
.rockit-msf-field.rockit-msf-error textarea {
	border-color: #d63638;
}

.rockit-msf-choice {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 400;
	margin-bottom: 6px;
}
.rockit-msf-group-label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 14px;
}

.rockit-msf-nav-buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 28px;
	gap: 10px;
}

.rockit-msf-btn {
	padding: 11px 24px;
	border-radius: 6px;
	border: none;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	background: #2271b1;
	color: #fff;
}
.rockit-msf-btn-prev {
	background: transparent;
	color: #2271b1;
	border: 1px solid #2271b1;
}
.rockit-msf-btn:disabled { opacity: 0.6; cursor: default; }

.rockit-msf-message {
	margin-top: 14px;
	font-size: 14px;
}
.rockit-msf-message-error { color: #d63638; }

.rockit-msf-success {
	text-align: center;
	padding: 40px 20px;
	font-size: 17px;
}
