/* Form */
.form {
	padding-top: 9px;
}

.form .field-wrapper {
	position: relative;
	margin-bottom: 9px;
}

.form .form-control {
	padding: .3125rem .75rem .5rem .75rem;
	border: 1px solid #f1f3f7;
	border-bottom: 1px solid #f7f8fb;
	border-left: 1px solid #f9fafc;
	border-radius: 0;
	background-color: #f1f3f7;
	font-size: .875rem;
	font-weight: 400;
	line-height: 1.5625rem;
	color: #192a35;
}

.form input, .form textarea {
	resize: none;
}

.form .invalid-tooltip {
	top: auto;
	padding: 0 .5rem;
}

.form .btn-primary {
	margin-top: 10px;
	background-color: #f6ab8c;
}

.form .btn-primary:hover, .form .btn-primary:focus {
	background-color: #51bf9d;
}




/* Responsive tablet */
@media (max-width: 992px) {
	
	/* Form */
	.form {
		padding-top: 11px;
	}

	.form .field-wrapper {
		margin-bottom: 7px;
	}

	.form .form-control {
		padding: .3125rem .75rem .3125rem .75rem;
		font-size: .8125rem;
		line-height: 1.25rem;
	}

	.form .btn-primary {
		margin-top: 5px;
	}
}




/* Responsive phone */
@media (max-width: 576px) {
	
	
}