/* - - - - - - cWebFormChgPass Styles - - - - - - */
/* Author: João Maurício Rinardo (DALA)
/* Date: 25/07/2019
/* This custom control uses the FontAwesome's "Font Awesome 5 Free" font (solid.css). */
/* Add it to your application's HTML: <link href="[path]/solid.css" rel="stylesheet"> */

/* Password Show/Hide button */
.WebFrmChgPass .WebFrm_Prompt {
    width: 24px;
    height: 23px;
}

.LoginView .WebFrmChgPass .WebFrm_Prompt:before {
	top: 45%;
}

.WebFrmChgPass .ShowPass:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 16px;
    background-image: url("../images/eye-open.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
}
.WebFrmChgPass .HidePass:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 16px;
    background-image: url("../images/eye-closed.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
}

.WebFrmChgPass .Web_Disabled .WebFrm_Prompt{
    opacity: 0.5;
    filter: alpha(opacity=50);
}