/* font family and size for Inputfield forms */
.FormBuilder, 
.InputfieldForm,
.InputfieldForm input,
.InputfieldForm textarea,
.InputfieldForm select,
.InputfieldForm button,
.ui-widget {
	font-family: 'aktiv-grotesk', sans-serif;
	font-size: 1rem; 
	line-height: 1.5em;
	box-sizing: border-box;
}
.InputfieldForm {
	margin: 1em 0;
}

/* additional padding for inputs and textareas */
.InputfieldForm input, .InputfieldForm textarea {
    padding: 0.75em 0.75em;
    border-radius: 6px;
    border: 0;
    background: #f8fafb;
}

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

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

/* submit button */
.InputfieldForm button {
    border-width: 0;
    color: #363636;
    cursor: pointer;
    justify-content: center;
    padding-bottom: calc(0.575em - 1px);
    padding-left: 2em;
    padding-right: 2em;
    padding-top: calc(0.575em - 1px);
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    height: 2.8em;
		border-color: transparent;
    color: #fff;
    border-radius: 200px;
    text-shadow: 0 1px 0 #4459ec;
    background: rgb(94,116,251);
    background: linear-gradient(0deg, rgba(94,116,251,1) 0%, rgba(28,183,235,1) 100%);    
}
.InputfieldForm button:hover {
    border-color: transparent;
    text-shadow: none;
    color: #fff;
    background-color: rgb(75,97,227);
    background: linear-gradient(0deg, rgba(75,97,227,1) 0%, rgba(6,84,131,1) 100%);
}

/* label header */
.Inputfield .InputfieldHeader {
	display: none;
	visibility: hidden;
	font-weight: bold;
	padding-bottom: 0.25em;
}

/* 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 */
.pw-clearfix:before,
.pw-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.pw-clearfix:after {
	clear: both;
}
/* clearfix support for IE7 */
.pw-clearfix {
	min-height: 0; 
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #455069;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #455069;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #455069;
}
:-moz-placeholder { /* Firefox 18- */
  color: #455069;
}
