.contact-form-container {
    margin: 0 auto;
}

.contact-form-container h2 {
    text-align: center;
	font-size: 38px;
	border-bottom:0px;
}

.contact-success {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.contact-errors {
    background-color: #b00000;;
    color: #a94442;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #3b3b3b;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .h-captcha {
    margin-bottom: 15px;
}

.contact-form .send-message-button {
  display: block;
  width: 302px;
  padding: 10px;
  background-color: #ff6c00;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form .send-message-button:hover {
    background-color: #ff984d;
}