/*formBox*/

.ContactBox .formBox {
    padding: 20% 15% 10%;
    box-shadow: inset 0 0 0.5em rgba(0, 0, 0, 0.5);
    border: 13px solid #8e7e78;
}

.ContactBox .formBox .title {
    position: absolute;
    left: 108%;
    width: 100%;
}

.ContactBox .formBox .title:before {
    content: '';
    width: 100px;
    height: 8px;
    background-color: #deb96c;
    display: block;
    margin-bottom: 1rem;
    transform: translateX(-60px);
}

.form-group {
    padding: 27px 0 22px;
    overflow: hidden;
}

.form-group:before {
    content: '';
    width: 95%;
    height: 1px;
    bottom: 0;
    left: 0;
    position: absolute;
    background-color: #999;
}
.form-group:last-child:before {
    width: 100%;
}

.form-group>label {
    position: absolute;
    line-height: 2;
}


.form-control {
    display: block;
    color: #888;
    background-color: transparent;
    border: 0px;
    border-radius: 0;
    width: 80%;
    left: 8rem;
}

.form-control:focus {
    border-bottom: 2px solid #deb96c;
    box-shadow: none;
}



.form-control label {
    padding: 0 10px;
}

.textarea{
    padding: 0;
}
textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    height: 150px;
}


::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: 888;
    font-weight: 200;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: 888;
    font-weight: 200;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: 888;
    font-weight: 200;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: 888;
    font-weight: 200;
}


@media(max-width: 480px){
    .form-control{
        left: 5rem;
    }
}