@charset "utf-8";
/* CSS Document */
form {
	padding-top: 10px;
	gap: 15px;
	color: var(--black);
}
form .input-group, form > * {
	gap: 15px;
}
label {
	font-family: var(--Roboto);
	font-weight: 900;
	font-style: normal;
	text-transform: uppercase;
	color: var(--black);
	padding-bottom: 5px;
}
input::placeholder, select::placeholder, textarea::placeholder {
	color: var(--black)!important;
	font-family: "Roboto", sans-serif;
}
input, select, textarea {
	font-weight: 300;
	font-style: normal;
	font-size: 18px;
	line-height: 18px;
	border-radius: 0;
	width: 100%;
	padding: 10px 15px;
	resize: vertical;
    background-color: var(--white);
	color: var(--black);
	border: 1px solid var(--light-grey);
}
select {
	border: 1px solid var(--light-grey);
	border-radius: 0;
	width: 100%;
	padding: 10px 15px;
}
input[type="checkbox"] {
	appearance: none;
	width: 20px;
	height: 20px;
	background-color: var(--white);
	border: 1px solid var(--light-grey);
	border-radius: 0;
	cursor: pointer;
	padding: 0;
	margin-right: 5px;
	vertical-align: middle;
}

input[type="checkbox"]:checked {
	background-color: var(--black);
	position: relative;
}

input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	top: 0px;
	left: 4px;
	width: 6px;
	height: 12px;
	border: solid var(--black);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
textarea {
	height: 108px;
}
.include-captcha{display: none;}
.CaptchaPanel{width:100%!important;margin: 0!important;padding: 0!important;}

.CaptchaImagePanel {text-align: left;}
.CaptchaImagePanel img{width:200px;text-align: left;}

.CaptchaAnswerPanel{
	width:250px;
}
.CaptchaWhatsThisPanel {text-align: left;}
.CaptchaWhatsThisPanel a{color:var(--black);}
.CaptchaMessagePanel {
	font-weight: normal!important;
	color: var(--black);
	text-align: left;
}