.wrapper-password {
	position: relative;
	z-index: 1;
}

.password, .strength {
	background: transparent;
	color: #777;
	border: 1px solid #aaa;
	font-family: "Lato", sans-serif;
	font-size: 14px;
	padding: 6px 12px;
	line-height: 1.42857143;
	text-indent: 6px;
	-webkit-appearance: none;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: border .25s linear, color .25s linear;
	-moz-transition: border .25s linear, color .25s linear;
	-o-transition: border .25s linear, color .25s linear;
	transition: border .25s linear, color .25s linear;
	-webkit-backface-visibility: hidden;
	width: 100%;
}

.strength_meter{
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 34px;
z-index: -1;
border-radius:5px;
}

.strength_meter div{
    width:0%;
height: 34px;
text-align: right;
color: #000;
line-height: 34px;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
-ms-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
padding-right: 12px;
border-radius:5px;
}

.strength_meter div p{
	position: absolute;
	    top: 10px;
	    right: 10px;
	    color: #333;
	    font-size: 13px;
	    line-height: normal !important;
	    margin-bottom: 0;
}

.veryweak{
	background-color: #c02942;
	border-color: #c02942!important;
	width:25%!important;
}
.weak{
	background-color: #ec971f;
	border-color: #d58512!important;
	width: 50%!important;
}
.medium{
	background-color: #ffe458;
    border-color: #FC0!important;
    width: 75%!important;
}
.strong{
	background-color: #449d44;
	border-color: #398439!important;
	width:100%!important;
}