	:root {
		--percentage:60;
		--cross: rgb(93,51,97);
		--tick: rgb(250,174,0); 
		--tickOpacity: rgba(250,174,0,0.15);
		--crossOpacity: rgba(93,51,97,0.15);
}

.form-group {
	width: 100%;
	position: relative;
}

.form-control {
	width: 100%;
	padding-left: calc(2rem / 100 * var(--percentage));
	padding-right: calc(2rem / 100 * var(--percentage));
	padding-top: 2.4rem;
	padding-bottom: calc(1.4rem / 100 * var(--percentage));
	margin-bottom: 1rem;
	box-sizing: border-box;
	border-color: var(--darkBlue);
	border-style: solid;
	border-width: 0.12rem;
	border-radius: 0.8rem;
	outline: none;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 140%;
	color: black;
	background-color: white;
}
.captchaInput {
	padding-top: calc(2rem / 100 * var(--percentage)) !important;

}
/* .addPad { padding-right: 0; } */
.form-control:focus {
	border-color: var(--lightBlue);
	outline: none;
	/* 	background-color: var(--greyLight); */
}

.form-group label {
	font-size: 1.3rem;
	position: absolute;
	top: calc(1.4rem / 100 * var(--percentage));
	left: calc(2rem / 100 * var(--percentage));
	color:black;
	font-weight: 300;
	z-index: 1;
}


.radio label {
	font-size: 1.5rem !important;
	position: relative !important;
	left:0;
	top:0.4rem;
	color:black;
	font-weight: 300;
	margin-bottom: 1rem;
	line-height: 160%;
}
.form-control-plus {
	padding-bottom: 2.8rem !important;
}
.form-control-plus label {
	margin-bottom:1.4rem !important;
}

.form-group-consent label {
	font-size: 1.5rem;
	position: absolute;
	top: -2rem;
	left: 0;
	color:black;
	font-weight: 300;
	margin-top:2rem;
	padding-left: 2.4rem;
	line-height: 140%;
	display: block;
}

input::placeholder {
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 140%;
	color: grey;
}

/* .form-control:focus label {
	color: #20A8A7;

} */

input[type=checkbox] {
	position: absolute;
	left: 0;
	top: 0;
}


#mathCaptcha {
	display: block;
	width: 40%;
	padding-bottom: 1.2rem;
	padding-top: 1rem;
	padding-left: 1.6rem;
	padding-right: 1.6rem;
	color: black;
	border: 1px solid rgb(120, 120, 120);
	border-radius: 4px;
	-webkit-box-shadow: none;
	box-shadow: none;
	transition: border-color ease-in-out .15s;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: 300;
	font-size: 1.5rem;
	outline: none;
	margin-bottom: 2rem;
  }
   .captchaBg {
	 background-color: #fafafa;
	 background-image:
	   linear-gradient(#e9e9e9 1px, transparent 1px),
	   linear-gradient(90deg, #e9e9e9 1px, transparent 1px);
	 background-size: 20px 20px;
  }
  
 #mathCaptcha label {
	position: relative;
	width: auto;
	height: auto;
	overflow: visible;
	display: inline-block;
	max-width: 100%;
	margin-bottom: 1rem;
	color: #000;
	left: 0;
	font-weight: 300;
	font-size: 1.5rem;
	line-height: 130%;
	text-decoration: none;
	padding-bottom: 0.4rem;
  }
  #mathCaptcha label strong {
	  font-weight: 400;

}


/* .select */

.formButton {
display: inline-block;
color: white;
border-color: white;
border-style: solid;
border-width: 0.12rem;
border-radius: 0.8rem;
font-size: 1.4rem;
line-height: 100%;
font-weight: 700;
text-align: center;
padding-left: 1.6rem;
padding-right: 1.6rem;
padding-top: 1.4rem;
padding-bottom: 1.2rem;
color: white;
text-transform: uppercase;
margin-bottom: 1.8rem;
background-color: var(--cross);
cursor: pointer;
}



.formButton:hover {
	background-color: var(--tick);
	color: white;
}


#form-alert,
#dl-form-alert {
  padding:1.6rem;
border-style: solid;
border-width: 1px;
font-size: 1.6rem;
line-height: 2rem;
display: block;
margin-bottom: 2rem;
  border-radius: 0.8rem;
}
.alert {
  border-color: black;
  background-color: var(--tickOpacity);
  color: black;
}
.alert-danger {
  background-color: var(--crossOpacity);
  border-color: var(--cross);
  color: var(--cross);
}

/* .consent {
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 130%;
	margin-bottom: 1.5rem;
	text-align: left;
	color: black;
	padding-left: 2.5rem;
} */
.form-group-consent {
	margin-bottom: 2.4rem;
	min-height: 6.3rem;
}
.form-group-consent a {
	font-weight: 700;
	color: black;
}

.form-group-consent a:hover {
	font-weight: 700;
	color: var(--tick);
}


input[type="checkbox"] {
	appearance: none; /* Removes default styling */
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 1.4rem;
	height: 1.4rem;
	border: 0.12rem solid var(--cross); /* Dark blue border */
	background-color: white;
	outline: none;
	cursor: pointer;
	position: relative;
	border-radius: 0.8rem; /* Rounded corners */
}

input[type="checkbox"]:focus {
	border: 0.12rem solid var(--tick); /* Light blue border on focus */
}

input[type="checkbox"]:checked {
	background-color: white; /* Light blue when checked */
	border-color: var(--tick); /* Keep dark blue border */
}

/* Optional: Add a checkmark */
input[type="checkbox"]::after {
	content: "";
	display: block;
	width: 0.92rem;
	height: 0.92rem;
	background-color: transparent;
	position: absolute;
	top: 0.12rem;
	left: 0.12rem;
	border-radius: 0.8rem;
}

input[type="checkbox"]:checked::after {
	background-color: var(--tick); /* White checkmark */
}

.form-field-optional {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

 .tick {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.4rem;
  text-align: center;
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--tick);
  -moz-border-radius: 2.4rem;
  -webkit-border-radius: 2.4rem;
  border-radius: 2.4rem;
  position: absolute;
  right: 1.2rem;
  top: 0.9rem;
  color: #fff;
  z-index: 100;
}

.cross {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.4rem;
  text-align: center;
  width: 2.4rem;
  height: 2.4rem;
  background-color:  var(--cross);
  -moz-border-radius: 2.4rem;
  -webkit-border-radius: 2.4rem;
  border-radius: 2.4rem;
  position: absolute;
  right: 1.2rem;
  top: 0.9rem;
  color: #fff;
  z-index: 100;
}
.inputArea p { font-size: 1.5rem; line-height: 180%; color: black; margin-bottom: 1.6rem; }


.captcha-reset-note {
	color: #000;
	font-weight: 400 !important;
	font-size: 1.5rem;
	line-height: 110% !important;
	margin-bottom: 0 !important;

}