.wo-onboarding {
	max-width: 560px;
	margin: 24px auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.wo-card {
	background: #fff;
	border: 1px solid #e2e4e7;
	border-radius: 8px;
	padding: 28px 32px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.wo-card + .wo-card { margin-top: 16px; }
.wo-card--success { border-color: #2bb24c; background: #f3fbf5; }
.wo-card--error   { border-color: #d63638; background: #fdf3f3; }

.wo-title {
	margin: 0 0 8px;
	font-size: 22px;
	color: #1d2327;
}
.wo-intro {
	margin: 0 0 20px;
	color: #50575e;
	line-height: 1.5;
}

.wo-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
	margin: 0 0 20px;
	padding: 14px;
	background: #f6f7f7;
	border-radius: 6px;
}
.wo-summary__item {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.wo-summary__label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #50575e;
}
.wo-summary__value {
	font-size: 18px;
	font-weight: 600;
	color: #1d2327;
}

.wo-form { display: flex; flex-direction: column; gap: 14px; }
.wo-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) {
	.wo-row { grid-template-columns: 1fr; }
}

.wo-field { display: flex; flex-direction: column; gap: 4px; }
.wo-label {
	font-size: 13px;
	color: #1d2327;
	font-weight: 600;
}
.wo-required { color: #d63638; }

.wo-input {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	font-size: 15px;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	background: #fff;
}
.wo-input:focus {
	border-color: #2271b1;
	outline: 2px solid #2271b133;
}
.wo-input[readonly] { background: #f6f7f7; color: #50575e; }

.wo-hint { color: #757575; font-size: 12px; }

.wo-strength {
	display: none;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
}
.wo-strength.is-active { display: flex; }
.wo-strength__bar {
	flex: 1;
	height: 6px;
	background: #e2e4e7;
	border-radius: 3px;
	overflow: hidden;
}
.wo-strength__fill {
	display: block;
	height: 100%;
	width: 0;
	background: #c3c4c7;
	transition: width 0.2s ease, background-color 0.2s ease;
}
.wo-strength__label {
	font-size: 12px;
	font-weight: 600;
	color: #50575e;
	min-width: 80px;
	text-align: right;
}
.wo-strength--short    .wo-strength__fill  { width: 25%;  background: #d63638; }
.wo-strength--short    .wo-strength__label { color: #d63638; }
.wo-strength--bad      .wo-strength__fill  { width: 45%;  background: #dba617; }
.wo-strength--bad      .wo-strength__label { color: #dba617; }
.wo-strength--good     .wo-strength__fill  { width: 70%;  background: #2271b1; }
.wo-strength--good     .wo-strength__label { color: #2271b1; }
.wo-strength--strong   .wo-strength__fill  { width: 100%; background: #2bb24c; }
.wo-strength--strong   .wo-strength__label { color: #2bb24c; }
.wo-strength--mismatch .wo-strength__fill  { width: 100%; background: #d63638; }
.wo-strength--mismatch .wo-strength__label { color: #d63638; }

.wo-match--ok  { color: #2bb24c; }
.wo-match--bad { color: #d63638; }

.wo-feedback--ok      { color: #2bb24c; }
.wo-feedback--bad     { color: #d63638; }
.wo-feedback--pending { color: #50575e; font-style: italic; }
.wo-username-feedback:empty { display: none; }

.wo-button {
	display: inline-block;
	padding: 10px 18px;
	font-size: 15px;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	font-weight: 600;
	text-decoration: none;
}
.wo-button--primary {
	background: #2271b1;
	color: #fff;
	border-color: #2271b1;
}
.wo-button--primary:hover { background: #135e96; border-color: #135e96; color: #fff; }

.wo-errors {
	list-style: none;
	margin: 0 0 16px;
	padding: 12px 14px;
	background: #fdf3f3;
	border: 1px solid #d63638;
	border-radius: 4px;
	color: #8a1f21;
}
.wo-errors li + li { margin-top: 4px; }

.wo-foot {
	margin: 16px 0 0;
	color: #50575e;
	font-size: 13px;
}
