/*label {*/
    /*display: inline-block;*/
    /*min-width: 140px;*/
/*}*/

/*label.error {*/
    /*margin-left: 10px;*/
    /*color: red;*/
/*}*/

/*input, button {*/
    /*font-size: 36px;*/
    /*line-height: 35px;*/
    /*border: 1px solid #999;*/
    /*min-width: 180px;*/
/*}*/

/*input.error {*/
    /*border: 1px solid red;*/
/*}*/

/*input[type=submit], button {*/
    /*margin-top: 20px;*/
    /*font-size: 36px;*/
    /*padding: 10px 0;*/
/*}*/

input.has-error{
    border-color: #ff6969;
}

p.has-error {
    top: 25px;
    left: 5px;
    padding: 2px 5px;
    font-size: 11px;
    color: #fff !important;
    max-width: none;
    position: absolute;
    background: #ff6969;
    z-index: 1000;
    border-radius: 3px;
    -webkit-box-shadow: 0 5px 10px indianred;
    box-shadow: 0 5px 10px indianred;
}

p.has-error.is-valid{
    display: none !important;
}

p.has-error:after {
    border-color: transparent transparent #ff6969 transparent;
    border-style: solid;
    border-width: 6px;
    content: "";
    height: 0;
    left: 15px;
    position: absolute;
    top: -12px;
}