#PwdValid {
	font-family: "Poppins", sans-serif;
	position: relative;
	width: 300px;
}
#PwdValid .inputBox {
	position: relative;
	width: 100%;
	background: #fff;
	padding: 5px;
	border-radius: 8px;
	box-shadow: 0 15px 25px rgb(0 0 0 / 15%);
}
#PwdValid .inputBox input {
	position: relative;
	width: 100%;
	outline: none;
	border: none;
	padding: 10px 5px;
	font-size: 0.85em;
	line-height: initial;
}
#PwdValid .inputBox #ValidToggle {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 34px;
	height: 34px;
	background: rgb(0 0 0 / 5%);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
#PwdValid .inputBox #ValidToggle::before {
	content: "\e384";
	font-family: "Font Awesome 6 Pro";
}
#PwdValid .inputBox #ValidToggle.hide::before {
	content: "\e367";
}
#PwdValid .validation {
	background: #376488;
	padding: 10px;
	margin-top: 30px;
	border-radius: 8px;
	box-shadow: 0 15px 25px rgb(0 0 0 / 15%);
}
#PwdValid .validation ul {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
#PwdValid .validation ul li {
	position: relative;
	list-style: none;
	color: #fff;
	font-size: 0.85em;
	line-height: initial;
	transition: 0.5s;
}
#PwdValid .validation ul li.valid {
	color: rgb(255 255 255 / 50%);
}
#PwdValid .validation ul li::before {
	content: "\f192";
	width: 20px;
	height: 10px;
	font-family: "Font Awesome 6 Pro";
	display: inline-flex;
}
#PwdValid .validation ul li.valid::before {
	content: "\f00c";
	color: #0f0;
}
