.form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 5px 10px;
    border: 1px solid #aaa;
    background: none;
}
.form-control:focus {
    outline: none;
    border-color: #FF722E;
}
.form-box {
    max-width: 900px;
    margin: 0 auto;
}
.form-box .form-group {
    padding: 10px 0;
}
.form-box .control-label {
    display: block;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #222;
}
.form-box .required {
    position: relative;
}
.form-box .required:before {
    content: "●";
    position: absolute;
    left: 5px;
    color: #F75000;
}
.form-box textarea.form-control {
    height: 160px;
}
.form-box .form-group .btn {
    background: #F75000;
    color: #fff;
    font-size: 18px;
    font-family: 'Lora', serif;
    width: 100%;
    line-height: 40px;
    margin-top: 10px;
}
.form-box .form-group .btn:hover {
    background: #CC0D0D;
}
.form-box .input-box {
    position: relative;
}
.form-box .captcha a {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 0;
    color: #FF732F;
    font-size: 20px;
    line-height: 38px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.form-box .captcha a .fa {
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.form-box .captcha a:hover .fa {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.success-txt {
    text-align: center;
    font-size: 15px;
    color: #222;
    position: relative;
    padding-bottom: 60px;
}
.success-txt:after {
    content: " ";
    display: block;
    width: 160px;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -80px;
}
.success-txt strong {
    display: block;
    margin: 0 auto 50px;
    max-width: 650px;
    padding: 8px 15px;
    line-height: 24px;
    border: 1px solid #F75000;
    font-size: 20px;
    color: #F75000;
    -webkit-border-radius: 10px;
            border-radius: 10px;
}