@charset "utf-8";
/* CSS Document */

#contact_form {
width:55%;
font-family:'Open Sans',sans-serif;
display:inline-block
}

#address_box {
display:inline-block;
width:43%;
margin:0;
border:none;
height:100%;
vertical-align:top
}

#name,#email,#message,#phone {
font-family:'Open Sans',sans-serif;
font-size:14px
}

#name {
font-weight:700;
color:#C98844
}

input {
display:block;
width:60%;
border-radius:4px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
background-color:#fff;
color:#4B321C;
border:0;
padding:10px;
margin-bottom:25px;
   -moz-box-shadow:    inset 0 0 7px #E4E4E4;
   -webkit-box-shadow: inset 0 0 7px #E4E4E4;
   box-shadow:         inset 0 0 7px #E4E4E4;
}

input::-webkit-input-placeholder {
color:#4B321C
}

input:-moz-placeholder {
color:#4B321C
}

textarea {
display:block;
width:80%;
border-radius:4px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
background-color:#fff;
color:#4B321C;
border:0;
padding:10px;
margin-bottom:25px;
   -moz-box-shadow:    inset 0 0 7px #E4E4E4;
   -webkit-box-shadow: inset 0 0 7px #E4E4E4;
   box-shadow:         inset 0 0 7px #E4E4E4;
}

textarea::-webkit-input-placeholder {
color:#4B321C
}

textarea:-moz-placeholder {
color:#4B321C
}

.sendButton {
cursor:pointer;
background-color:#C98844;
-webkit-border-radius:3px;
-moz-border-radius:3px;
border-radius:3px;
color:#fff;
font-size:14px;
width:40%;
font-weight:700;
margin-bottom:0!important;
-webkit-appearance: none!important;
-moz-box-shadow: none!important;
-webkit-box-shadow: none!important;
box-shadow: none!important;
}

.sendButton:hover {
background-color:#aa733a
}


@media only screen and (max-width: 800px) {
textarea {
width:95%;

}
}