th, strong {
    display: none;
}
.captcha-field th {
    padding-top: 35px;
}
table { width: 100%; }
td input[type="text"],
td textarea {
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    border: 1px solid #AAA;
    padding: 2px 5px;
    border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 1.2em;
    font-family: inherit;
    box-shadow: 0 1px 2px -1px #AAA inset;
}

input[type="submit"]  {
    background-color: transparent;
    color: #197ef2;
    padding: 10px 40px;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid #197ef2;
    border-radius: 7px;
    -o-border-radius: 7px;
    -ms-border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    cursor: pointer;
}

tr.invalid input[type="text"],
tr.invalid textarea {
    background: #FCC;
}


tr.required input[type="text"],
tr.required textarea {
    background: #FFC;
}


tr.invalid td:hover, tr.invalid td:hover *,
tr.required td:hover,tr.required td:hover * {
    cursor: help;
}

tr.invalid td:hover::after,
tr.required td:hover::after {
    cursor: help;
    position: absolute;
    padding: 0.5em;
    width: 9.5em;
    margin-left: 18em;
    text-align: center;
    margin-top: -2.35em;
    border: 1px solid;
    border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}


tr.invalid td:hover::after {
    content: 'Invalid Entry';
    background: #FAA;
    color: #333;
    border-color: #AAA;
}


tr.required td:hover::after {
    content: 'Entry Required';
    background: #FFA;
    color: #888;
    border-color:#AAA;
}

