body{
width:100%;
padding:0;
margin:0;
font-size:16px;
background:#fff;
}
#contact{
width:96%;
max-width:800px;
padding:10px;
margin:0 auto;
}
#contact table {
  border-collapse: collapse;
background:#fff;
}
 
#contact p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
}
#contact h2 {
padding:20px 0;
margin:10px 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
color:#00c6ff;
border-top:1px dotted;
border-bottom:1px dotted;
} 

input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}
 
 
input[type="text"],
textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 80%;
  transition: 0.8s;
  border-radius: 0;
}
 
input[type="text"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
 
textarea[name="content"] {
  display: inline-block;
  width:94%;
  height: 200px;
}
 
input::placeholder,
textarea::placeholder {
  color: #ccc;
}
 
::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
 
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
 
:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}
 
.form-table {
  width: 100%;
}
 
.form-table th,
.form-table td {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 20px;
}
 
.form-table th {
  background: #b9efff;
  padding-left: 50px;
  position: relative;
  text-align: left;
  width: 30%;
}
.form-table td {
  background: #b9efff;
  padding-left: 50px;
  position: relative;
  text-align: left;
  width: auto;
}
