@charset "utf-8";
/* CSS Document */
form {
	padding-top: 15px;
	gap: 15px;
	color: var(--black);
}
form .input-group, form > * {
	gap: 15px;
}
label {
	font-family: var(--Droid);
	font-weight: 400;
	font-style: normal;
	text-transform: capitalize;
	color: var(--black);
}
input::placeholder, select::placeholder, textarea::placeholder {
	color: var(--black)!important;
	font-family: var(--Droid);
}
input, select, textarea {
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	padding: 10px 20px;
	border-radius: 5px;
	width: 100%;
	resize: vertical;
    background-color: var(--grey);
	color: var(--black);
	border: 2px solid var(--grey);
	transition: .3s ease all;
}
select {
	border: 2px solid var(--grey);
	border-radius: 5px;
	width: 100%;
	padding: 10px 20px;
	height: 44px; /* Match input/textarea height if needed */
	box-sizing: border-box;
}
input[type="checkbox"] {
	appearance: none;
	width: 25px;
	height: 25px;
	background-color: var(--grey);
	border: 2px solid var(--grey);
	border-radius: 5px;
	cursor: pointer;
	padding: 0;
	margin-right: 5px;
	vertical-align: middle;
}

input[type="checkbox"]:checked {
	position: relative;
}

input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 7px;
	width: 6px;
	height: 12px;
	border: solid var(--red);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.checkbox-label-container {
	display: flex;
	align-items: center;
	gap: 5px;
}
textarea {
	height: 108px;
	font-family: var(--Droid);
}
.include-captcha{display: none;}
.CaptchaPanel{width:100%!important;margin: auto!important;padding: 0!important;}

.CaptchaImagePanel {text-align: left;}
.CaptchaImagePanel img{width:200px;text-align: left;}

.CaptchaAnswerPanel{
	width:250px;
	/* margin: auto; */
}
.CaptchaWhatsThisPanel {text-align: left;}
.CaptchaWhatsThisPanel a{color:var(--black);}
.CaptchaMessagePanel {
	font-weight: normal!important;
	color: var(--black);
	text-align: left;
}