*,
*:before,
*:after {
	outline: none;
	box-sizing: border-box;
}

.Form {
	padding: 20px;

	font-family: 'Roboto', sans-serif;

	background: #fff;
}

.FormTitle {
	width: 100%;
	height: 40px;
	margin-top: 20px;
	padding: 0 10px;

	color: #545454;
	font-size: 15px;
	font-weight: 700;
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
	line-height: 40px;

	border-bottom: 2px solid #eee;
	background: #fafafa;
}

.FormTitle:first-child {
	margin-top: 0;
}

.FormRow {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 20px -10px 0;
}

.FormField {
	flex: 1;
	padding: 0 10px;
}

.FormField label {
	display: block;
	margin-bottom: 5px;

	color: #545454;
	font-size: 15px;
	font-weight: 700;
	font-family: 'Roboto Condensed', sans-serif;
}

.FormField input {
	width: 100%;
	height: 38px;
	padding: 0 10px;

	color: #545454;
	font-size: 14px;

	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

.FormField input[type="file"] {
	padding: 6px;
}

.FormField select {
	width: 100%;
	height: 38px;
	padding: 0 10px;

	color: #545454;
	font-size: 14px;

	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 1px 0 #c00;
}

.FormField textarea {
	width: 100%;
	padding: 10px;

	color: #545454;
	font-size: 14px;

	resize: none;

	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

.FormField textarea + p {
	margin: 0;

	color: #666;
	font-size: 13px;
}

.FormRow button {
	display: block;
	margin-left: 10px;

	padding: 8px 15px;

	color: #fff;
	font-size: 16px;
	font-weight: 700;
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;

	background: linear-gradient(to bottom, #f67565 0%, #f45b49 100%);
	border: none;
	border-radius: 2px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.form-error {
	font-size: 14px;
}