* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;

}

:root {
	--primary-color: #B3B3B3;
	--accent-color: #652F6C;
}

.lato-light {
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.lato-regular {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.lato-light-italic {
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-style: italic;
}

.lato-regular-italic {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: italic;
}

html {
	font-family: "Lato", sans-serif;
}

body {
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-style: normal;
	line-height: 1.6;
	background-color: #f4f4f4;
	color: #333;

}

.full-container {
	position: relative;
	max-width: 2560px;
	min-height: 100vh;
	margin: 0 auto;
	padding: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	background-image: url('/assets/img/bg.png');
	background-repeat: no-repeat;
	background-position: top right;
	background-attachment: fixed;
	background-size: 100% auto;

}

.bg-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 20%;
	min-width: 300px;
	transform: rotate(180deg);
}

header .logo {
	width: 180px;
	height: auto;
	display: block;
	margin: 20px auto;
	margin-left: 0;

}

footer {
	position: relative;
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	margin-top: 70px;
}

footer>div {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

footer .column-right {
	align-items: flex-end;
	justify-content: space-between;
}

footer .logo {
	width: 180px;
	height: auto;
	display: block;
	margin: 20px auto;
	margin-right: 0;
}

footer a {
	color: inherit;
	font-size: 0.75rem;
}

footer a:hover {
	color: var(--accent-color);
}

.line {
	background-color: var(--accent-color);
	height: 4px;
	border-radius: 2px;
	width: 80%;
	max-width: 250px;
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	footer {
		flex-direction: column;
		align-items: center;
	}

	footer>div {
		width: 100%;
		margin-bottom: 20px;

	}
}






/* ---- */


.boxed-container {
	max-width: 890px;
	margin: 20px auto;
	padding: 20px;
}


form,
.thank-you-form {
	margin-top: 100px;
	background-color: #F2F2F2;
	border-radius: 8px;
	padding: 20px 40px;
	box-shadow: 0 0px 10px 1px rgba(0, 0, 0, 0.2);
}

form .logo {
	width: 240px;
	height: auto;
	display: block;
	margin: 30px auto 30px;
}

.form-group {
	position: relative;
}


.form-group:not(.consent):has(input:required)::after,
.form-group.country-select::after {
	content: "Required";
	color: #666;
	position: absolute;
	right: 10px;
	font-size: 0.6em;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
}

input::placeholder {
	font-weight: normal;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	background-color: #E6E6E6;
	color: #666;
	font-weight: bold;
	border-radius: 4px;
	border: none;
	position: relative;
	z-index: 5;
}

.bold {
	font-weight: bold !important
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
}

.custom-select {
	position: relative;
}

.custom-select input {
	cursor: pointer;
}

.options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	max-height: 200px;
	margin-top: -10px;
	background: #E6E6E6;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
	display: none;
	z-index: 20;
}

.options li {
	padding: 8px 10px;
	list-style: none;
	cursor: pointer;
}

.options li:hover {
	background: #ddd;
}

.form-group.info {
	margin-top: 3rem;

}

.form-group.info p,
.form-group.info label {
	font-size: 0.75rem;
	margin-bottom: 1rem;
	line-height: 1.15;
}

.form-group a {
	color: inherit;
}

/* style checkbox */
input[type="checkbox"] {
	width: 15px;
	height: 15px;
	margin-right: 10px;
	margin-left: 20px;
	vertical-align: middle;
	appearance: checkbox;

}

input[type="checkbox"] {
	accent-color: #B3B3B3;
	border-radius: 3px;
	border: 2px solid #B3B3B3;
	background: #B3B3B3;
}

input[type="checkbox"]:checked {
	background-color: #B3B3B3;
	border-color: #B3B3B3;
}

.submit-group {
	text-align: center;
	display: flex;
	justify-content: center;
}

#submit {
	font-family: "Lato", sans-serif;
	background-color: var(--accent-color);
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 300;
	font-size: 2.25rem;
	margin: 20px auto;
}

#submit.loading {
	opacity: 0.5;
}

/* THANK YOU */
.thank-you-form {
	text-align: center;
	padding-top: 40px;
	margin-bottom: 120px;
}

.thank-you-form button {
	font-family: "Lato", sans-serif;
	background-color: var(--accent-color);
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: lighter;
	font-size: 1.25rem;
	margin-bottom: 40px;
}

.thank-you-message {
	font-size: 1.75rem;
	font-weight: normal;
	margin-bottom: 40px;
	text-align: center;
	text-wrap: balance;
	line-height: 1.25;
}

@media screen and (max-width: 768px) {

	.thank-you-message {
		font-size: 1.25rem;
	}

}