.borderage-container {
	overflow: hidden;
}

.borderage-title {
	color: var(--borderage-success);
}

.borderage-icon {
	font-size: 48px;
	margin-bottom: 16px;
}

.borderage-password-requirements {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 16px;
	font-size: 14px;
}

.borderage-password-requirements-title {
	font-weight: 600;
	margin-bottom: 8px;
	color: #fff;
}

.borderage-password-requirements-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.borderage-password-requirements-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 0;
	color: rgba(0, 0, 0, 0.6);
}

.borderage-password-requirements-item.valid {
	color: #4ade80;
}

.borderage-password-requirements-icon {
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.15);
	color: rgba(0, 0, 0, 0.4);
	font-size: 12px;
	transition: background 0.2s ease, color 0.2s ease;
}

.borderage-password-requirements-item.valid .borderage-password-requirements-icon {
	background: #4ade80;
	color: #000;
}

.borderage-strength-meter {
	height: 6px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	margin-top: 8px;
	overflow: hidden;
}

.borderage-password-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.borderage-password-input-wrapper input {
	flex: 1;
	padding-right: 40px;
}

.borderage-password-toggle {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	cursor: pointer;
	color: rgba(0, 0, 0, 0.5);
	font-size: 18px;
	padding: 0;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.borderage-password-toggle:hover {
	color: rgba(0, 0, 0, 0.7);
}

.borderage-password-toggle-icon {
	width: 20px;
	height: 20px;
}

.borderage-strength-meter-bar {
	height: 100%;
	width: 0%;
	transition: width 0.3s ease, background-color 0.3s ease;
}

.borderage-strength-meter-bar.weak {
	background: #ef4444;
	width: 33.33%;
}

.borderage-strength-meter-bar.medium {
	background: #f59e0b;
	width: 66.66%;
}

.borderage-strength-meter-bar.strong {
	background: #4ade80;
	width: 100%;
}
