input[type=text],
input[type=email],
input[type=password],
input[type=number],
select,
textarea{
	background-color: white;
	color: black;
	border: 1px solid black;
	border-radius: 9px;
	font-family: "Poppins";
	font-weight: 600;
	font-size: 14px;
	padding: 10px 20px;
	box-sizing: border-box;
	width: 100%;
	max-width: 300px;
}

select{
	cursor: pointer;
}

textarea{
	max-width: 600px;
	resize: none;
}

input[type=text][disabled],
input[type=email][disabled],
input[type=password][disabled],
input[type=number][disabled],
select[disabled],
textarea[disabled]{
	background-color: #bbb;
	color: #eee;
}

input[type=button],
input[type=submit]{
	background-color: #E8FF0E;
	border: 1px solid #E8FF0E;
	color: black;
	padding: 12px 25px;
	font-family: "Poppins";
	cursor: pointer;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 900;
}

input[type=button]:hover,
input[type=submit]:hover{
	background-color: white;
	border-color: black;
}

input[type=button][disabled],
input[type=submit][disabled]{
	cursor: default;
	background-color: #ccc;
	color: #eee;
	border-color: #ccc;
}

input.date{
	text-align: center;
	width: 140px;
}

input.small{
	text-align: center;
	width: 80px;
}

ul.form{
	margin-top: 30px;
}

/* SPAM HONEYPOT */
ul.form li.reason{
	display: none;
}

ul.form label{
	color: black;
	font-weight: 900;
	font-size: 13px;
}

ul.form > li{
	margin-top: 26px;
}

ul.form > li.break{
	border-top: 1px solid #ccc;
}

ul.form div.element{
	margin-top: 15px;
}

ul.form div.element.small_text{
	line-height: 1.6em;
	font-size: 12px;
}

ul.form div.description{
	line-height: 1.6em;
	font-size: 12px;
	margin-top: 5px;
}

ul.form ul.multi_text li:not(:first-child){
	margin-top: 5px;
}

div.form_buttons{
	margin-top: 25px;
}

div.form_buttons input:not(:first-child){
	margin-left: 10px;
}

ul.form ul.checklist li{
	margin-top: 10px;
}

ul.form ul.checklist label{
	color: black;
	font-weight: normal;
}

ul.form ul.checklist input{
	vertical-align: middle;
	margin-right: 3px;
}

div.invalid_field label{
	color: red;
	font-weight: bold;
}