form .col:nth-child(2) {
	margin-right: 0;
}
form .group {
	display: block;
	margin-bottom: 10px;
}
form label {
	font-size: 1rem;
	display: block;
}
form input,
form select,
form textarea {
	width: calc(100% - 2rem);
	padding: 0.5rem 1rem;
	border-radius: 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	outline: none;
	font-size: 1rem;
	font-family: 'Fira Sans', sans-serif;
	line-height: 1.1;
}
form input:hover,
form select:hover,
form textarea:hover {
	border-color: rgba(0, 0, 0, 0.2);
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	-webkit-box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.2);
}
form input:focus,
form select:focus,
form textarea:focus {
	border-color: rgba(0, 0, 0, 0.4);
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
form textarea {
	height: 14.2rem;
}
form .checkbox {
	position: relative;
}
form .checkbox input {
	width: auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
}
form .checkbox label {
	font-size: 0.8rem;
	line-height: 1.3;
	position: relative;
	padding-left: 1.5rem;
}
form .checkbox label p {
	margin-bottom: 0;
}
form .checkbox label .more-content {
	margin-top: 15px;
}
form .checkbox label li {
	margin-bottom: 5px;
}
form .checkbox .more {
	color: #279af1;
	text-decoration: none;
}
form .checkbox .more-content {
	display: none;
}
form .error {
	border-color: red;
	background: rgba(255, 193, 193, 0.2);
}
form .error-message {
	display: none;
}
form .error-message:first-of-type {
	display: block;
	font-size: 0.7rem;
	color: red;
}

form button.btn {
	border: 0;
}

/*# sourceMappingURL=form.min.css.map */
