﻿.moduleLogin .password-strength {
	padding-bottom: 12px;
}
.moduleLogin .password-meter {
	height: 10px;
	width: 152px;
	margin-left: 20px;
	padding: 2px 4px;
	display: inline-block;
	position: absolute;
	background: lightgray;
}
.moduleLogin .password-meter-progress {
	left: 0;
	top: 0;
	position: absolute;
	height: inherit;
	width: 0;
	max-width: 152px;
	padding: inherit;
	text-transform: capitalize;
	transition: width 240ms linear;
	font-size: 9px;
	font-weight: bold;
	text-align: center;
}
.moduleLogin .password-meter-progress.strong {
	background: lime;
	width: 100%;
}
.moduleLogin .password-meter-progress.medium {
	background: yellow;
	width: 60%;
}
.moduleLogin .password-meter-progress.weak {
	background: red;
	width: 40%;
}