.c-form {
	position: relative;
}

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.c-form:before, 
.c-form:after { 
	content: " "; display: table; 
}

.c-form:after { 
	clear: both; 
}

.c-column {
	width: 33%;
	padding: 5px 15px;
	float: left;
}

.c-form label {
	display: block;
	padding: 15px 5px 5px 2px;
	font-size: .9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
}

.c-form input,
.c-form textarea,
.c-form select {
	line-height: 1.2;
	font-size: 1rem;
	padding: 8px 10px;
	color: #10689a;
	display: block;
	width: 100%;
	background: transparent;
}

.c-form select {
	background: #e0dffd;
	margin:6px 0;
}
	
.c-form input,
.c-form textarea {
	border: 1px solid #ccc;
}

.c-form textarea {
	min-height: 200px;
}

.c-form input:focus,
.c-form textarea:focus,
.c-form label:active + input,
.c-form label:active + textarea {
	outline: none;
	border: 1px solid #10689a;
}

.c-form select:focus {
	outline: none;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color: #10689a;
    font-style: italic;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #10689a;
    font-style: italic;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #10689a;
    font-style: italic;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #10689a;
    font-style: italic;
}

.c-submit-wrap {
	text-align: left;
	padding-top: 40px;
	clear: both;
}

.c-form input.c-submit {
	background: #10689a;
	border: none;
	color: #fff;
	width: auto;
	cursor: pointer;
	text-transform: uppercase;
	display: inline-block;
	padding: 15px 30px;
	font-size: 1.1rem;
	border-radius: 2px;
	letter-spacing: 1px;
}

.c-form input.c-submit:hover {
	background: #1478b1;
}

@media screen and (max-width: 70em) {
	.c-column {
		width: 50%;
	}
	.c-column:nth-child(3) {
		width: 100%;
	}
}

@media screen and (max-width: 48em) {
	.c-column {
		width: 100%;
		padding: 10px;
	}
}



input[type='checkbox'] {
    -webkit-appearance:none;
    width:1rem;
    height:1rem;
    background:white;
    border-radius:5px;
    border:1px solid #555;
}
input[type='checkbox']:checked {
    background: #abd;
}