@import url("./fonts/DinPro/font.css");
@import url("./fonts/Poppins/font.css");

:root {
	--primary-color: #25329a;
	--secondary-color: #f7f8fc;
	--terciary-color: #d9d9d9;
	--text-color: #3c3c3c;
}

html,
body {
	padding: 0;
	margin: 0;
	font-family: "DinPro";
}

.container {
	width: calc(100% - 40px);
	max-width: 950px;
	margin: 0 auto;
	box-sizing: border-box;
}

.page-logo {
	background-color: var(--primary-color);
	padding: 1.8em;
	line-height: 0;
	text-align: center;
}
.page-title {
	background-color: var(--secondary-color);
	padding: 1.4em;
	color: var(--text-color);
	text-align: center;
}
.page-title h1 {
	font-family: "DinPro";
	font-weight: 500;
	font-size: 27px;
	text-align: center;
}

main {
	padding: 1.4em;
}

.inputElement {
	display: block;
	margin-bottom: 1.4em;
	color: var(--text-color);
}
.inputElement-name {
	margin-bottom: 1em;
	font-weight: 500;
	font-size: 17px;
}
.inputElement-input {
}
.inputElement-input input {
	padding: 0.8em 1em;
	border: 1px solid var(--terciary-color);
	border-radius: 5.31px;
	width: 100%;
	box-sizing: border-box;
	font-family: "Poppins";
}

.inputElement.isCheckbox {
	display: flex;
	flex-direction: row;
	gap: 0.8em;
	padding: 0.8em 0;
	font-weight: 500;
	font-size: 17px;
}
.inputElement.isCheckbox a {
	font-weight: 300;
	text-decoration: underline;
	color: #747474;
	font-family: "Poppins";
	font-size: 13px;
}
.btnSubmit {
	width: 100%;
	padding: 0.8em;
	text-align: center;
	background-color: var(--primary-color);
	color: white;
	border-radius: 5.31px;
	cursor: pointer;
}

#alertWrap {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}
#alertBackdrop {
}
.backdrop {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-color: rgb(0 0 0 / 80%);
}
#alertContent {
	position: relative;
	z-index: 2;
	padding: 20px;
	border-radius: 10px;
	background-color: white;
	max-width: calc(100% - 40px);
	font-family: "DinPro";
	font-weight: 400;
}
