/* Password strength meter styles */
.password-strength-meter {
	margin-top: 8px;
}
.pw-meter-bar {
	height: 8px;
	border-radius: 999px;
	background: #ece6f6;
	overflow: hidden;
	position: relative;
}
.pw-meter-fill {
	height: 100%;
	width: 0%;
	transition: width .25s ease, background .25s ease;
	background: #ff4d4f;
}
.pw-meter-label {
	margin-top: 6px;
	font-size: 0.9rem;
	color: #666;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}
.pw-meter-list {
	margin: 6px 0 0;
	padding-left: 16px;
	color: #666;
	font-size: 0.9rem;
}
.pw-meter-list li.valid {
	color: #1a7f37;
}
.pw-meter-list li.invalid {
	color: #a40014;
}
