.contact-form {
	/*max-width: 700px;*/
	margin: 0 auto;
	/*padding: 1rem;*/
	padding: 1rem 25% 1rem 25%;
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-form .form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem;
}

.contact-form .form-group {
	display: flex;
	flex-direction: column;
	padding-bottom: 10px;
}

.contact-form .form-group.full-width {
	grid-column: span 2;
}

.contact-form .form-control {
	padding: 0.5rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	transition: 500ms;
}

.contact-form .form-control:focus {
	border-color: #301604;
	outline: none;
}

.contact-form .form-actions {
	text-align: right;
	margin-top: 1rem;
}

.contact-form .btn-submit {
	background: #301604;
	color: #ccb2a2;
	padding: 0.8rem 1.2rem;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	font-weight: bold;
	width: 100%;
	transition: 500ms;
}

.contact-form .btn-submit:hover {
	background: #ccb2a2;
	color:#301604;
	transition: 500ms;
}

.contact-form div.form-group.has-error .form-control{
	border: 1px solid #f00;
	transition: 500ms;
}

.contact-form .alert.alert-success{
	border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    margin-bottom: 25px;
    background: #080;
    text-align: center;
    font-weight: bold;
    color: #ddd;
}
.contact-form .alert.alert-fail{
	border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    margin-bottom: 25px;
    background: #800;
    text-align: center;
    font-weight: bold;
    color: #ddd;
}

@media only screen and (max-width: 1400px) {
	.contact-form {
	    padding: 1rem;
	}
}
@media only screen and (max-width: 600px) {}