@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope/Manrope-ExtraLight.ttf") format("truetype");
	font-weight: 200;
	font-style: normal;
	display: swap;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope/Manrope-Light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	display: swap;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope/Manrope-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	display: swap;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope/Manrope-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	display: swap;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope/Manrope-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
	display: swap;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope/Manrope-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	display: swap;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope/Manrope-ExtraBold.ttf") format("truetype");
	font-weight: 800;
	font-style: normal;
	display: swap;
}

:root {
	--clr-primary-100: #E8EDFF;
	--clr-primary-200: #95ADFF;
	--clr-primary-300: #2B79C4;
	--clr-primary-400: #005EB8;

	--clr-orange-300: #fa9b28;
	--clr-orange-400: #ED8F1C;

	--clr-green-400: #0FAA72;

	--clr-red-400: #E03137;

	--clr-neutral-100: #F8F8F8;
	--clr-neutral-200: #F1F2F4;
	--clr-neutral-400: #94A3B8;
	--clr-neutral-300: #E9EAEC;
	--clr-neutral-500: #A0AEC0;
	--clr-neutral-600: #687588;
	--clr-neutral-700: #323B49;
	--clr-neutral-800: #1F2937;
	--clr-neutral-900: #111827;

	--ff-primary: "Manrope";
	--ff-secondary: "";

	--ff-body: var(--ff-primary);

	--transition-default: all 250ms;

	--bp-xs: 380;
	--bp-sm: 576;
	--bp-md: 768;
	--bp-lg: 992;
	--bp-xl: 1260;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	font: inherit;
}

html,
body {
	height: 100%;
}

html {
	font-size: 62.5%;
}

body {
	font-family: var(--ff-body);
	font-size: 1.6rem;
	color: var(--clr-neutral-900);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;

}

img,
picture,
video,
canvas,
svg {
	display: block;
	width: 100%;
	max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

ul[role="list"],
ol[role="list"] {
	list-style: none;
}

input:focus {
	outline: none;
	border-color: var(--clr-primary-400);
}


/* Utilities */

.margin-top-3-2 {
	margin-top: 3.2rem;
}

.margin-bottom-3-2 {
	margin-bottom: 3.2rem;
}


/* Buttons */

:where(.button) {
	font-size: 1.6rem;
	font-weight: 700;
	text-decoration: none;
	background-color: var(--clr-neutral-300);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.6rem;
	padding: 1.4rem 2.4rem;
	outline: none;
	border: 0.1rem solid var(--clr-neutral-300);
	cursor: pointer;
	transition: var(--transition-default);
}

.button[disabled],
.button[disabled]:hover {
	color: var(--clr-neutral-800);
	border-color: var(--clr-neutral-300);
	background-color: var(--clr-neutral-300);
	cursor: not-allowed;
}

.button-block {
	width: 100%;
}

.button-group {
	display: flex;
	gap: 1.6rem;
	align-items: center;
}

.button-group .button {
	flex-grow: 1;
}

.button img.icon {
	width: auto;
	height: 2.2rem;
}

.button img.icon-left {
	margin-right: 1.2rem;
}

.button-border {
	border-color: var(--clr-neutral-300);
	background-color: transparent;
}

.button-primary {
	color: #fff;
	background-color: var(--clr-primary-400);
	border-color: var(--clr-primary-400);
}

.button-primary:hover {
	color: #fff;
	background-color: var(--clr-primary-300);
	border-color: var(--clr-primary-300);
}

.button-primary:active {
	color: #fff;
	background-color: var(--clr-primary-300);
}

.button-primary-border {
	color: var(--primaryButtonHoverColor);
	background-color: transparent;
	border: 0.2rem solid var(--primaryButtonColor);
}

.button-primary-border:hover {
	color: #fff;
	background-color: var(--primaryButtonHoverColor);
	border: 0.2rem solid var(--primaryButtonHoverColor);
}

.button-primary-border .icon {
	fill: var(--primaryButtonColor);
}

.button-primary-border:hover .icon {
	fill: #fff;
}

.button-danger {
	color: var(--dangerButtonTextColor);
	background-color: var(--dangerButtonColor);
	border: 0.2rem solid var(--dangerButtonColor);
}

.button-danger:hover {
	background-color: var(--dangerButtonHoverColor);
	border-color: var(--dangerButtonHoverColor);
}

.button-danger:active {
	background-color: var(--dangerButtonHoverColor);
	border-color: var(--dangerButtonHoverColor);
}

.button-danger-border {
	color: var(--dangerButtonColor);
	border: 0.2rem solid var(--dangerButtonColor);
	background-color: transparent;
}

.button-danger-border:hover {
	color: #fff;
	background-color: var(--dangerButtonColor);
}

.button-warning {
	color: #fff;
	border: 0.2rem solid var(--clr-orange-400);
	background-color: var(--clr-orange-400);
}

.button-warning:hover {
	border: 0.2rem solid var(--clr-orange-500);
	background-color: var(--clr-orange-500);
}

.button-warning:active {
	background-color: var(--clr-orange-600);
}

/* Cookie */

.cookie-container {
	background-color: #fff;
	width: 100%;
	max-width: 35rem;
	padding: 3.2rem;
	border-radius: 1.8rem;
	position: absolute;
	bottom: 4rem;
	left: 4rem;
	z-index: 100;
	opacity: 0;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
	pointer-events: none;
}

.cookie-container.active {
	opacity: 1;
	pointer-events: unset;
}

.cookie-heading {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cookie-text {
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--clr-neutral-600);
}

.cookie-button {
	margin-top: 2rem;
	padding: 1rem 2.4rem;
}

/* Form */

:where(form .form-group:not(:first-of-type)) {
	margin-top: 2.4rem;
}

.form-group {
	position: relative;
}

.form-group.has-right-icon .input-style-1 {
	padding-right: 4rem;
}

.form-group.has-left-icon .input-style-1 {
	padding-left: 4rem;
}

.form-group-icon {
	stroke: var(--clr-neutral-700);
	width: 1.9rem;
	height: 1.9rem;
	position: absolute;
}

.form-group-icon.can-interact {
	cursor: pointer;
}

.form-group-icon.right {
	right: 1.5rem;
	top: calc(50% + 0.7rem);
}

.form-group-icon.left {
	left: 1.5rem;
	top: 50%;
	transform: translate(0%, -50%);
}

.form-group .left-right-options {
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--clr-neutral-600);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.form-group .left-right-options>* {
	width: 50%;
}


.form-group .left-right-options>*:last-of-type {
	display: flex;
	justify-content: flex-end;
}

.form-group .left-right-options a {
	text-decoration: none;
	color: inherit;
}

:where(.input-style-1-label) {
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--clr-neutral-900);
	display: block;
	margin-bottom: 1rem;
}

.input-style-1-label .required {
	color: var(--clr-red-400);
}

.input-style-1 {
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--clr-neutral-700);
	background-color: #fff;
	width: 100%;
	padding: 1.6rem 2rem;
	border-radius: 0.6rem;
	border: 0.1rem solid var(--clr-neutral-300);
}

.input-style-1:disabled {
	background-color: var(--clr-neutral-100);
	cursor: not-allowed;
}

select.input-style-1 {
	min-height: 5.52rem;
}

.input-wrapper {
	position: relative;
}

.input-wrapper .generate-password-icon {
	fill: var(--clr-neutral-600);
	width: 1.9rem;
	height: 1.9rem;
	position: absolute;
	right: 1.3rem;
	top: 50%;
	transform: translate(5rem, -50%);
	cursor: pointer;
}

.input-style-1-checkbox {
	font-size: 1.4rem;
	display: block;
	position: relative;
	padding-left: 3rem;
	margin-bottom: 0rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.input-style-1-checkbox input {
	height: 0;
	width: 0;
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.input-style-1-checkbox .checkmark {
	background-color: #fff;
	border-radius: 0.6rem;
	border: 0.1rem solid var(--clr-neutral-400);
	height: 2rem;
	width: 2rem;
	position: absolute;
	top: 0.05rem;
	left: 0;
}

.input-style-1-checkbox :hover input~.checkmark {
	background-color: #ccc;
}

.input-style-1-checkbox input:checked~.checkmark {
	background-color: var(--clr-primary-400);
	border-color: var(--clr-primary-400);
}

.input-style-1-checkbox .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.input-style-1-checkbox input:checked~.checkmark:after {
	display: block;
}

.input-style-1-checkbox .checkmark:after {
	left: 0.7rem;
	top: 0.4rem;
	width: 0.5rem;
	height: 0.9rem;
	border: solid white;
	border-width: 0 0.2rem 0.2rem 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}



/* Section Divider */

.section-divider {
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	color: var(--clr-neutral-600);
	padding-top: 1rem;
	padding-bottom: 1rem;
	width: 100%;
	position: relative;
}

.section-divider.active+[data-collapsed] {
	height: unset;
	overflow: unset;
}


.section-divider::before {
	--gutter: 20px;
	content: "";
	display: block;
	background-color: var(--clr-neutral-200);
	width: calc(50% - (var(--width) / 2) - var(--gutter));
	height: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.section-divider::after {
	--gutter: 20px;
	content: "";
	display: block;
	background-color: var(--clr-neutral-200);
	width: calc(50% - (var(--width) / 2) - var(--gutter));
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}


/* Account */

.account {
	display: flex;
}

.account.reverse {
	flex-direction: row-reverse;
}

.account-logo {
	width: 28rem;
	display: block;
	margin-inline: auto;
	margin-bottom: 5.2rem;
}

.account-text {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.7;
	color: #fff;
	margin-top: 1.5rem;
	max-width: 65rem;
}

.account-arrow {
	width: 10rem;
	transform: translate(-6rem, 0.5rem);
}

.account-title {
	font-size: 3.2rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 30px;

}

.account-title-sub {
	font-size: 1.8rem;
	font-weight: 400;
	margin-top: 0.7rem;
}

.account .form-container {
	width: 100%;
	max-width: 48rem;
}

.account .bg-img-1 {
	height: 100%;
	object-fit: cover;
}

.account>.left {
	width: 50%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.account>.left .box {
	height: 100%;
	position: relative;
}

.account>.left .box::before {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	top: 0;
	height: 100%;
	background: linear-gradient(180deg, #005EB8 0%, #002A52 60.5%);
	opacity: 0.8;
}

.account>.right {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3rem 2.5rem;
	width: 50%;
	position: relative;
}

.account .login-with-socials .button {
	font-weight: 500;
}

.account-form-lower-link {
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	color: var(--clr-neutral-500);
}

.account-form-lower-link a {
	text-decoration: none;
	color: var(--clr-primary-400);
}

.account-section-style-1 {
	background-color: var(--clr-primary-400);
}

.account-section-style-1>* {
	padding-top: 2rem;
	padding-left: 10rem;
}

.account-section-style-1 .bg-img {
	margin-top: 3rem;
	border-top-left-radius: 2rem;
	object-fit: cover;
	position: absolute;
	width: 50%;
	height: calc(100% - 13rem);
	bottom: 0;
}

.account-copyright {
	font-size: 1rem;
	line-height: 1.7;
	text-align: center;
	width: 100%;
	max-width: 60rem;
	position: absolute;
	left: 50%;
	bottom: 1.2rem;
	transform: translateX(-50%);
}

/* Error Page */


.error-page-logo {
	display: block;
	margin: auto;
	width: 40rem;
}

.error-page-title {
	font-size: 4.8rem;
	font-weight: 700;
}

.error-page-info-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.error-page-info {
	text-align: center;
	padding: 5rem;
	width: 100%;
	max-width: 100rem;
	transform: translateY(-3rem);
}

.error-page-info p {
	font-size: 2.4rem;
	font-weight: 500;
}

.error-page-info p:not(:first-of-type) {
	margin-top: 1rem;
}


@media(max-width: 1260px) {

	body {
		overflow-x: hidden;
		overflow-y: auto;
	}

	.account-container,
	.account {
		height: 100%;
	}

	.account>.left {
		display: none;
	}

	.account>.right {
		width: 100%;
		min-height: auto;
		height: auto;
		align-items: flex-start;
	}

	.account>.right {
		padding: 3.2rem;
	}

	.account>.left .box:first-of-type,
	.account-section-style-1 .bg-img {
		display: none;
	}

	.account>.left .box:last-of-type {
		height: auto;
	}

	.account-section-style-1>* {
		padding: 3.2rem;
		padding-top: 1.2rem;
	}

	.account-copyright {
		font-size: 0.9;
		bottom: 0.5rem;
	}
}

@media(max-width: 768px) {
	.account-arrow {
		transform: translate(0rem, -1rem);
	}

	.account-text {
		font-size: 1.8rem;
		line-height: 1.6;
	}

	.account>.left .box:last-of-type {
		padding: 3.2rem;
	}
}

@media(max-width: 576px) {

	.error-page-logo {
		width: 20rem;
	}

	.error-page-title {
		font-size: 2.6rem;
	}

	.error-page-info p {
		font-size: 1.6rem;
	}

	.error-page-info {
		padding: 2rem;
	}

	.cookie-container {
		max-width: 100%;
		border-radius: 0;
		bottom: 0;
		left: 0;
	}
}