.contact-form.wrapper {
  min-width:23em;
  width:75%;
  margin:0 auto;
  padding: 0 20px;
  display:block;
}

#contact-form label,
#contact-form label > span {
  clear: both;
  display: block;
}

#contact-form label {
  margin-bottom:1em;
}
#contact-form label > span {
  margin-bottom:0.5em;
}

#contact-form input,
#contact-form textarea {
  padding: 0.5em;
  border: 1px solid #B4B4B4;
  border-radius: 2px;
  width: 100%;
  font-family: inherit;
}

#response-message > div {
    font-weight: bold;
    padding: 0.5em;
    border-radius: 2px;
    margin-bottom: 1em;
    line-height: 1.5em;
}

#response-message .error {
    color: #E90E6C;
    border: 1px solid #E90E6C;
}
#response-message .success {
    color: #7898BF;
    border: 1px solid #7898BF;
}

#response-message a {
  color: blue;
  text-decoration: none;
}

.required > span::after {
 content: " * ";
 color: red;
}

#contact-form input[type=submit] {
  width: 16px;
  padding:0px 0px;
  background:#7898BF;
  border:0 none;
  cursor:pointer;
  border-radius: 4px;
}

#contact-form input[type=submit]:hover {
  background:#E90E6C;
}

textarea {
}
