
meter#um-sp-password-strength-meter {
    /* Reset the default appearance */
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
            
	margin: 0 auto 1em;
	width: 100%;
	height: 7px;
    
	margin-top: 2px;
	border-radius: 3px;
	
	
    /* Applicable only to Firefox */
	background: none;
	background-color: rgba(0,0,0,0.1);
}

meter#um-sp-password-strength-meter::-webkit-meter-bar {
	background: none;
	background-color: rgba(0,0,0,0.1);
	border-radius: 3px;
}

meter#um-sp-password-strength-meter > div{
    height: 7px;
	border-radius: 3px;
}

meter#um-sp-password-strength-meter[value="1"] > div {
    width: 25%;
    background: red;
	border-radius: 3px;
  }

meter#um-sp-password-strength-meter[value="2"] > div {
    width: 50%;
    background: red;
	border-radius: 3px;
  }

meter#um-sp-password-strength-meter[value="3"] > div {
    width: 75%;
    background: orange;
	border-radius: 3px;
  }

meter#um-sp-password-strength-meter[value="4"] > div {
    width: 100%;
    background: green;
	border-radius: 3px;
  }

meter#um-sp-password-strength-meter[value="1"]::-webkit-meter-optimum-value { background: red; border-radius: 3px; }
meter#um-sp-password-strength-meter[value="2"]::-webkit-meter-optimum-value { background: red; border-radius: 3px; }
meter#um-sp-password-strength-meter[value="3"]::-webkit-meter-optimum-value { background: orange; border-radius: 3px; }
meter#um-sp-password-strength-meter[value="4"]::-webkit-meter-optimum-value { background: green; border-radius: 3px; }

meter#um-sp-password-strength-meter[value="1"]::-moz-meter-bar { background: red; border-radius: 3px; }
meter#um-sp-password-strength-meter[value="2"]::-moz-meter-bar { background: rd; border-radius: 3px; }
meter#um-sp-password-strength-meter[value="3"]::-moz-meter-bar { background: orange; border-radius: 3px; }
meter#um-sp-password-strength-meter[value="4"]::-moz-meter-bar { background: green; border-radius: 3px; }

#um-sp-password-strength-text .feedback .warning, #um-sp-password-strength-text .feedback .suggestions{
    padding:5px;
	font-size: 13px;
}