﻿@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
.container_loginfield {
    position: relative;
    margin-bottom: 20px;
}

.container_passwordrules {
    position: absolute;
    top: 10px;
    left: 100%;
    margin-left: 40px;
    background: #F0F4F3;
    width: 560px;
    padding: 1em;
    border-radius: 3px;
    z-index: 50;
    filter: drop-shadow(0 0px 2px #bebebe);
    width: 400px;
}

    .container_passwordrules:before {
        content: "";
        position: absolute;
        border-style: solid;
        /* reduce the damage in FF3.0 */
        display: block;
        width: 0;
        top: 16px; /* controls vertical position */
        left: -40px; /* value = - border-left-width - border-right-width */
        bottom: auto;
        border-width: 15px 40px 15px 0;
        border-color: transparent #F0F4F3;
    }

    .container_passwordrules p {
        margin-top: 0;
    }


.passwordrules {
    list-style: none;
    margin: 0;
    padding: 0;
}

.passwordrule {
    padding: 0;
}

.rule_ok {
    color: green;
}

.rule_error {
    color: red;
}

input.rule_ok, input.rule_error {
    color: #000;
}

.passwordrule.ok span,
.passwordrule.error span {
    color: #000;
}


.passwordrule:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f1ce";
    margin-right: 1em;
}

    .passwordrule.rule_ok:before {
        content: "\f058";
    }

    .passwordrule.rule_error:before {
        content: "\f057";
    }


.txtNewPWD1.rule_error, .match_error {
    border: 1px solid #ff0000;
    background: #FBD2D3;
}

.changepwdstatushome {
    display: none;
}

.error {
    color: red;
    font-weight: bold;
}

.field_password {
    position: relative;
    display: inline-block;
}

.container_loginfield.container_logout {
    margin-top: 110px;
}