
	:root {
		--percentage:60;
		--cross: rgb(0,0,0);
		--tick: rgb(95,166,68); 
		--crossOpacity: rgba(0,0,0,0.15);
		--tickOpacity: rgba(95,166,68,0.15);
		--green: #5FA644;
		  --blue: #00A3DA;
		  --orange: #E78133;
		  --lightGrey: #F0F0F0;
		  --midGrey: #4C4C4C;
		  --darkGrey: #1A1A1A;
}


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

.form-control,
.form-group  input[type=text],
.form-group  input[type=tel],
.form-group  input[type=email]  {
	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(--darkGrey);
	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;
}
#captchaAnswer {
	position:relative;
}

/* .addPad { padding-right: 0; } */

.form-control:focus,
.form-group  input[type=text]:focus,
.form-group  input[type=tel]:focus,
.form-group  input[type=email]:focus  {
	border-color: var(--green);
	outline: none;
}

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

.radio label {
	font-size: 1.5rem !important;
	position: relative !important;
	left:0;
	top:0.4rem;
	color: var(--darkGrey);
	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: var(--darkGrey);
	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;
}

 .cross,
.invalid {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2rem;
  text-align: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--cross);
  -moz-border-radius: 2rem;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: #fff;
  z-index: 100;
  -webkit-transition: background-color 2s ease-in-out;
  -moz-transition: background-color 2s ease-in-out;
  -o-transition: background-color 2s ease-in-out;
  transition: background-color 2s ease-in-out;
}

.tick,
.valid {
  font-family: Arial;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2rem;
  text-align: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--tick);
  -moz-border-radius: 2rem;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: #fff;
  z-index: 100;
  -webkit-transition: background-color 2s ease-in-out;
  -moz-transition: background-color 2s ease-in-out;
  -o-transition: background-color 2s ease-in-out;
  transition: background-color 2s ease-in-out;
}


/* .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(--darkBlue);
}



.formButton:hover {
	background-color: var(--lightBlue);
	color: white;
} */



/* .formButton {
	display: inline-block;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 3rem;
	border-radius: 1.65rem;
	border-width: 0.3rem;
	border-style: solid;
	border-color: white;
	padding-left: 1.6rem;
	padding-right: 1.6rem;
	text-transform: uppercase;
	color: white;
	background-color: var(--darkGrey);
}

.formButton:hover {
	background-color: var(--green);

} */

button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
}

.formButton {
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 500;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;          /* necessary for ::after positioning */
  cursor: pointer;
  border: 1px solid var(--green);
  border-radius: 0.8rem;
  color: var(--green);
  background-color: white;
  padding: 1.2rem 1.8rem;
  padding-right: calc(1.8rem + 4.1rem); /* extra space for arrow */

  transition: all 0.2s ease;
  overflow: hidden;
}

.formButton::after {
  content: '';
  display: flex;               /* ensures width/height work */
  justify-content: center;
  align-items: center;
  position: absolute;          /* position relative to button */
  top: 0;
  right: 0;
  width: 4.1rem;
  height: 100%;
  border-left: 1px solid var(--green);
  border-top-right-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
  background-color: white;
  background-image: url('/gfx/arrowRightGreen.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease;
}

.formButton:hover,
.formButton.hovered {
  background-color: var(--green);
  color: white;
}

.formButton:hover::after,
.formButton.hovered::after {
  background-color: var(--green);
  border-left-color: white;
  background-image: url('/gfx/arrowRightWhite.png');
}


.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;
  text-align: left;

}
.alert-danger {
  background-color: var(--crossOpacity);
  border-color: var(--cross);
  color: var(--cross);
}
.alert-success {
  border-color: var(--tick);
  background-color: var(--tickOpacity);
  color: black;
}




/* .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: 500;
	color: var(--darkGrey);
}

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


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(--darkGrey); /* 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(--green); /* Light blue border on focus */
}

input[type="checkbox"]:checked {
	background-color: white; /* Light blue when checked */
	border-color: var(--darkGrey); /* 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(--green); /* White checkmark */
}

#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;
  }
  .form-field-optional {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
  }

  
 #mathCaptcha label {
  font-size: 1.3rem;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  color: var(--darkGrey);
  font-weight: 300;
  z-index: 20;
  display:block !important;
  margin-bottom: 1rem !important;
  }

#mathCaptcha p {
	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 p strong {
	  font-weight: 400;

}

#captcha_answer  {
	width: 100%;
	padding-left: calc(2rem / 100 * var(--percentage));
	padding-right: calc(2rem / 100 * var(--percentage));
	padding-top: calc(1.4rem / 100 * var(--percentage)) !important;
	padding-bottom: calc(1.4rem / 100 * var(--percentage));
	margin-bottom: 1rem;
	box-sizing: border-box;
	border-color: var(--darkGrey);
	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;
}

.captcha-reset-note {
	font-weight: 400;
	font-size: 1.3rem !important;
	line-height: 110% !important;
	text-decoration: none !important;
	padding-bottom: 0;
}