.rjr-form-wrapper {
	max-width: 640px;
	margin: 0 auto;
}

.rjr-notice {
	padding: 12px 16px;
	border-radius: 4px;
	margin-bottom: 16px;
}

.rjr-notice-success {
	background: #e6f6e6;
	color: #1a6f1a;
	border: 1px solid #1a6f1a;
}

.rjr-notice-error {
	background: #fbe6e6;
	color: #a11;
	border: 1px solid #a11;
}

.rjr-progress {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.rjr-progress-track {
	flex: 1;
	height: 8px;
	background: #e5e5e5;
	border-radius: 4px;
	overflow: hidden;
}

.rjr-progress-bar {
	height: 100%;
	width: 0;
	background: #2f8f3b;
	transition: width 0.2s ease;
}

.rjr-progress-label {
	font-size: 13px;
	font-weight: 600;
	color: #555;
	white-space: nowrap;
}

.rjr-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	border-bottom: 2px solid #ddd;
	margin-bottom: 20px;
}

.rjr-tab-btn {
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 10px 14px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
}

.rjr-tab-btn.is-active {
	color: #1a6fd4;
	border-bottom-color: #1a6fd4;
}

.rjr-tab-count {
	display: inline-block;
	margin-left: 6px;
	font-size: 11px;
	font-weight: 500;
	color: #999;
}

.rjr-tab-panel {
	display: none;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 16px 20px;
	margin-bottom: 20px;
}

.rjr-tab-panel.is-active {
	display: block;
}

.rjr-tab-nav-buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 16px;
}

.rjr-field {
	margin-bottom: 14px;
}

.rjr-field label {
	display: block;
	font-weight: 500;
	margin-bottom: 4px;
}

.rjr-field input[type="text"],
.rjr-field input[type="email"],
.rjr-field input[type="tel"],
.rjr-field input[type="date"],
.rjr-field input[type="number"],
.rjr-field input[type="password"],
.rjr-field select,
.rjr-field textarea {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.rjr-field-boolean {
	display: flex;
	align-items: center;
	gap: 8px;
}

.rjr-field-boolean label {
	margin-bottom: 0;
}

.rjr-checkbox-inline {
	display: inline-block;
	margin-right: 16px;
}

.rjr-required {
	color: #c0392b;
}

.rjr-repeater-row {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}

.rjr-repeater-template {
	display: none;
}

.rjr-submit {
	margin-top: 8px;
}
