#reset_password_frm form{
  	position: relative;
}
#reset_password_frm form .reset-password-field{
	height: 45px;   
	width: 100%;
	display: flex;
	position: relative;
}
#reset_password_frm form .reset-password-field input{
	width: 100%;
	height: 100%;
	outline: none;
	transition: all 0.3s;
}
#reset_password_frm form .reset-password-field .show-password{
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	display: none;
	user-select: none;
}
#reset_password_frm form .indicator{
	width:100%;
	height: 5px;
	margin: 7px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	display: none;
}
#reset_password_frm form .indicator span{
	position: relative;
	height: 100%;
	width: 100%;
	background: lightgrey;
	border-radius: 5px;
}
#reset_password_frm form .indicator span:nth-child(2){
  	margin: 0 3px;
}
#reset_password_frm form .indicator span.active:before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border-radius: 5px;
}
.indicator span.weak:before{
 	background-color: #ff4757;
}
.indicator span.medium:before{
	background-color: orange;
}
.indicator span.strong:before{
  	background-color: #23ad5c;
}
#reset_password_frm form .text{
	font-size: 14px;
	font-weight: 500;
	display: none;
}
#reset_password_frm form .text.weak{
  	color: #ff4757;
}
#reset_password_frm form .text.medium{
  	color: orange;
}
#reset_password_frm form .text.strong{
  	color: #23ad5c;
}
/*Re-Captch related css*/
.g-recaptcha{
	display: inline-block;
}