@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
	font-family: 'Montserrat', sans-serif;
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
}

#container {
	width: 100%;
	padding: 2.25rem 0 1.5rem;
	background-image: -moz-linear-gradient( 180deg, rgb(162,2,2) 0%, rgb(220,2,2) 100%);
	background-image: -webkit-linear-gradient( 180deg, rgb(162,2,2) 0%, rgb(220,2,2) 100%);
	background-image: -ms-linear-gradient( 180deg, rgb(162,2,2) 0%, rgb(220,2,2) 100%);
}

form.wufoo {
	margin: 0;
	padding: 0;
}

img.logo {
	width: 100%;
	max-width: 280px;
	transform: translateY(42%);
}

.info h2 {
	margin-bottom: 1.5rem;
	font-weight: bold;
	font-size: 25px;
	text-transform: uppercase;
	text-align: center;
	color: white;
	letter-spacing: 2px;
}

/* INPUT */
.input-container {
	padding: 0 3rem;
}

.inputwrapper {
	width: 100%;
	margin-bottom: 1rem;
}

input.text, input.search, textarea.textarea {
	width: 100%;
	max-width: 100%;
	padding: 10px;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	border: none;
	outline: none;
}

#saveForm {
	width: 100%;
	padding: 10px 0;
	background: black;
	font-weight: bold;
	font-size: 25px;
	text-transform: uppercase;
	color: white;
	border: none;
	transition: all 0.15s ease;
	cursor: pointer;
}

#saveForm:hover {
	background: rgb(50, 50, 50);
}

/* --------------------
*
*	PARSLEY
*
* --------------------*/
.parsley-errors-list {
	display: none !important;
}

.parsley-error {
	position: relative;
	background: rgb(255, 145, 145) !important;
}

@media screen and (max-width: 300px) {
	.info h2 {
		font-size: 21px;
	}

	.input-container {
		padding: 0 1rem;
	}
}

@media screen and (max-width: 285px) {
	.info h2 {
		font-size: 17px;
	}
}