body { 
  font-family: Calibri, Verdana, Arial; 
  font-size: 14pt; 
  color: #747474;   
  background-color: #FFFFFF;
} 
input[type=text], select {
    width: 100%;
    padding: 4px 6px;
    margin: 0px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=password], select {
    width: 100%;
    padding: 4px 6px;
    margin: 0px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: #78C0FF;
    color: white;
    padding: 14px 20px;
    margin: 0px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #3C8AFF;
}

div {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 10px;
    margin: 0px 0px 0px 0px 0;   
}	

.PwdWrapTable {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    background: transparent;
}

.PwdWrapTable td {
    padding: 0;
    margin: 0;
    background: transparent;
}

.PwdInputCell {
    width: 100%;
}

.PwdEyeCell {
    width: 32px;
    padding-left: 6px !important;
}

.PwdInputCell input[type=password],
.PwdInputCell input[type=text] {
    width: 100%;
    margin: 0;
}

.PwdEye {
    display: inline-block;
    position: relative;
    width: 28px;
    height: 28px;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    color: #747474;
    background: #F3F7FB;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    user-select: none;
}

.PwdEyeHidden:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 13px;
    width: 17px;
    height: 2px;
    background: #8A1F3D;
    transform: rotate(-35deg);
    z-index: 5;
}




