input, textarea {
	font-size: 0.8rem;
}

section.formGroup {
	padding: 0 20px;
}

section.formGroup div {
	margin-bottom: 10px;
	position: relative;
	padding: 0 5px;
	display: block;
}

section.formGroup label, section.formGroup input, section.formGroup select, section.formGroup textarea {
	display: block;
	width: 100%;
	margin-bottom: 5px;
	min-height: 20px;
}

section.formGroup input, section.formGroup select, section.formGroup textarea {
	border-radius: 4px;
	border: 1px #dbe6ec solid;
	padding: 5px;
	box-sizing: border-box;
	height: 30px;
}

section.formGroup textarea {
	height: 90px;
	resize: none;
}

section.formGroup input:hover, section.formGroup select:hover, section.formGroup textarea:hover {
	box-shadow: 0px 0px 5px #c0c0c0;
}

section.formGroup input:focus, section.formGroup select:focus, section.formGroup textarea:focus {
	box-shadow: 0px 0px 5px #19197b;
}

section.formGroup input[type='button'] {
	background-color: var(--color-purple);
	color: #FFF;
	font-weight: 700;
	text-transform: uppercase;
	border: 0 !important;
	margin: 1.5em auto;
	max-width: 15em;
}

section.formGroup input[type='button']:hover {
	cursor: pointer;
}

label.error {
	position: absolute;
	z-index: 100;
	top: 45px;
	font-size: 8px;
	color: #B91515;
	right: 10px;
	pointer-events: none;
	width: 85px !important;
}

input.error {
	border-color: #B91515 !important;
	box-shadow: 0px 0px 5px #B91515 !important;
}