.form_table td {
    position: relative;
}

label.error{
    position: absolute;
    top: -26px;
    right: 0;
    background: #EB292F;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 4px 6PX;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

label.error:after{
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(235, 41, 47, 0);
    border-top-color: #EB292F;
    border-width: 10px;
    margin-left: -10px;
}