.input_email_container, .input_password_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #777;
	border-radius: 3px;
	margin: 0px 0px 10px 0px;
	padding: 5px;
	width: calc(100% - 12px);
}
#sh_pwd, #sh_opwd, #sh_npwd {
	display: inline-block;
	position: relative;
	width: 20px;
	height: 20px;
	background: #555;
	border-radius: 70% 0 / 70%;
	transform: rotate(45deg);
	margin-right: 3px;
	margin-top: auto;
	margin-bottom: auto;
}
#sh_pwd::before, #sh_opwd::before, #sh_npwd::before {
	content: "";
	position: absolute;
	top: 15%;
	left: 15%;
	width: 40%;
	height: 40%;
	background: inherit;
	border-radius: 100%;
	border: 3px solid #fff;
}
#sh_pwd.hidden::after, #sh_opwd.hidden::after, #sh_npwd.hidden::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 30px;
	top: -25%;
	left: 43%;
	background: #555;
	border: none;
	border-left: 1px solid #fff;
}
