.wpfw-field-captcha input {
	max-width: 140px;
}

.wpfw-hp-wrap {
	position: absolute;
	left: -9999px;
	top: -9999px;
	height: 0;
	width: 0;
	overflow: hidden;
}

.wpfw-wizard {
	max-width: 960px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #2b2b2b;
}

.wpfw-progress {
	font-size: 13px;
	font-weight: 600;
	color: #555;
	text-transform: uppercase;
	letter-spacing: .04em;
	margin-bottom: 6px;
}

.wpfw-step-title {
	font-size: 24px;
	font-weight: 500;
	margin: 0 0 20px;
}

.wpfw-step-container.is-transitioning {
	opacity: 0;
	transition: opacity .12s ease;
}

.wpfw-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.wpfw-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
	text-align: left;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	padding: 20px 24px;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	transition: box-shadow .15s ease, border-color .15s ease, transform .1s ease;
}

.wpfw-card:hover {
	box-shadow: 0 4px 14px rgba(0,0,0,.10);
	border-color: #ccc;
	transform: translateY(-1px);
}

.wpfw-card.is-selected {
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34,113,177,.25);
}

.wpfw-card-icon {
	font-size: 24px;
	width: 28px;
	flex-shrink: 0;
	color: #444;
	margin-top: 2px;
	text-align: center;
}

.wpfw-card-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wpfw-card-title {
	font-size: 16px;
	font-weight: 600;
}

.wpfw-card-desc {
	font-size: 14px;
	color: #2271b1;
	line-height: 1.5;
}

.wpfw-section {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	padding: 24px;
	margin-bottom: 20px;
}

.wpfw-section-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 16px;
}

.wpfw-file-upload {
	width: 100%;
}

.wpfw-file-drop {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 2px dashed #c3c4c7;
	border-radius: 8px;
	padding: 20px;
	cursor: pointer;
	color: #555;
	font-size: 14px;
	transition: border-color .15s ease, background .15s ease;
}

.wpfw-file-drop:hover {
	border-color: #2271b1;
	background: #f6f9fc;
}

.wpfw-file-drop input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	overflow: hidden;
}

.wpfw-file-drop i {
	font-size: 20px;
	color: #2271b1;
}

.wpfw-file-list {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wpfw-file-item {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #f6f7f7;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 13px;
}

.wpfw-file-item.is-done i {
	color: #1e6b3c;
}

.wpfw-file-item.is-error {
	background: #fcecec;
	border-color: #f3c1c1;
	color: #8a1f1f;
}

.wpfw-file-item.is-error i {
	color: #b32d2e;
}

.wpfw-file-item.is-removing {
	opacity: .5;
}

.wpfw-file-name {
	font-weight: 600;
	overflow-wrap: anywhere;
}

.wpfw-file-size,
.wpfw-file-error {
	color: #777;
	font-size: 12px;
}

.wpfw-file-remove {
	margin-left: auto;
	background: none;
	border: none;
	color: #b32d2e;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	padding: 2px 6px;
}

.wpfw-wizard.is-uploading .wpfw-btn-next,
.wpfw-wizard.is-uploading .wpfw-btn-back {
	opacity: .5;
	pointer-events: none;
}

.wpfw-conditional-hidden {
	display: none !important;
}

.wpfw-field {
	margin-bottom: 18px;
}

.wpfw-field:last-child {
	margin-bottom: 0;
}

.wpfw-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 6px;
}

.wpfw-required {
	color: #d63638;
}

.wpfw-field input[type="text"],
.wpfw-field input[type="date"],
.wpfw-field textarea,
.wpfw-field select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	box-sizing: border-box;
}

.wpfw-field textarea {
	min-height: 100px;
	resize: vertical;
}

.wpfw-hint {
	display: block;
	color: #777;
	font-size: 12px;
	margin-top: 4px;
}

.wpfw-radio-option,
.wpfw-checkbox-option {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 14px;
	cursor: pointer;
}

.wpfw-step-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.wpfw-btn {
	appearance: none;
	border: none;
	border-radius: 6px;
	padding: 12px 22px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.wpfw-btn-next {
	background: #2271b1;
	color: #fff;
	margin-left: auto;
}

.wpfw-btn-next:hover {
	background: #195a8e;
}

.wpfw-btn-back {
	background: transparent;
	color: #555;
}

.wpfw-wizard.is-loading {
	opacity: .6;
	pointer-events: none;
}

.wpfw-ajax-error {
	background: #fcecec;
	color: #8a1f1f;
	border: 1px solid #f3c1c1;
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 14px;
	margin-bottom: 16px;
}

.wpfw-success {
	background: #eafaf0;
	border: 1px solid #b7ebc6;
	color: #1e6b3c;
	border-radius: 8px;
	padding: 24px;
	font-size: 16px;
	text-align: center;
}
