input.form-control.has-error {
    border: 1px solid #d90000;
}

.text-small {
    background: #f7f7f7;
    padding: 1em 1.5em;
    border-radius: 5px;
    color: #777;
}

.input-row__password{
    position: relative;
    display: flex;
    align-items: center;
}

.input-row__password .password-icon{
    background: url('/local/templates/.default/images/eye-closed-icon.svg');
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    display: block;
    position: absolute;
    right: 15px;
    cursor: pointer;
    background-size: 22px;
}

.input-row__password.active .password-icon{
    background: url('/local/templates/.default/images/eye-open-icon.svg');
    background-size: 22px;
}