/* font family and size for Inputfield forms */
.FormBuilder, 
.InputfieldForm,
.InputfieldForm input,
.InputfieldForm textarea,
.InputfieldForm select,
.InputfieldForm button,
.ui-widget {
	box-sizing: border-box;
	font-family: "Cabin", Arial, sans-serif;
}
.InputfieldForm {
	margin: 1em 0;
}

/* additional padding for inputs and textareas */
.InputfieldForm input,
.InputfieldForm textarea {
	padding: 0.25em 0.35em;
}

/* error messages */
.FormBuilder .error, 
.InputfieldForm .error {
	color: red;
}

/* wrapper for label + input */
.Inputfield {
	margin-bottom: 1.5em;
}

/* submit button */
.InputfieldForm button {
	padding: 0.5em 1em;
}

/* label header */
.Inputfield .InputfieldHeader {
	display: block;
	font-weight: bold;
	padding-bottom: 0.25em;
	color: #262C39;
}

/* show a red asterisk after label when field "required" */
.InputfieldStateRequired > .InputfieldHeader:first-child:after {
	color: red;
	content: '*';
}

/* descriptive text within Inputfields */
.Inputfield .notes,
.Inputfield .description {
	margin-bottom: 0.25em;
	margin-top: 0;
	opacity: 0.6;
}

/* styling for fieldsets and legend */
fieldset.InputfieldFieldset {
	padding: 1em;
	border: 1px solid;
}
fieldset.InputfieldFieldset legend {
	font-size: 22px;
}

/* honeypot */
#wrap_Inputfield- {
	display: none;
}

/* clearfix */
.Inputfields > .Inputfield > .InputfieldContent:before,
.Inputfields > .Inputfield > .InputfieldContent:after,
.InputfieldForm:after,
.pw-clearfix:before,
.pw-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.Inputfields > .Inputfield > .InputfieldContent:after,
.InputfieldForm:after,
.pw-clearfix:after {
	clear: both;
}
/* clearfix support for IE7 */
.pw-clearfix {
	min-height: 0; 
}

.InputfieldSubmit button {
	background-color: #4E2F91;
	text-decoration: none;
	text-align: center;
	-webkit-box-shadow: 1px 1px 1px 0px rgb(0 0 0 / 20%);
	-moz-box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 1px 1px 1px 0px rgb(0 0 0 / 20%);
	border: 0px;
	color: #ffffff;
	margin: 15px 15px 0 0;
	font-size: 16px;
	padding: 0 20px;
	display: inline-block;
	line-height: 40px;
	height: 40px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	min-width: 135px;
	font-weight: bold;
	text-transform: uppercase;
}
.InputfieldContent textarea, .InputfieldContent input[type="email"], .InputfieldContent input[type="text"] {
  border-radius: 0;
  border: 1px solid #ccc;
	padding: 10px 5px;
}