@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

body {
	background-color: #242d49;
	position: relative;
	height: 100vh;
}

.logo {
	position: absolute;
	width: 100%;
	height: 100px;
	top: 0;
	left: 0;
	background-image: url("/assets/images/intelligentlayer_logo.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 250px;
}
div.sent {
	font-family: "Cairo", sans-serif;
	font-size: 16px;
	line-height: 16px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}
form {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	height: fit-content;
	transform: translate(-50%, -50%);
}
form h1 {
	display: block;
	width: 100%;
	font-family: "Cairo", sans-serif;
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}
form p {
	display: block;
	width: 100%;
	font-family: "Cairo", sans-serif;
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	margin-bottom: 30px;
}
form label {
	display: block;
	width: 100%;
	font-family: "Cairo", sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #fff;
	margin-bottom: 5px;
}
form input {
	display: block;
	width: 100%;
	font-family: "Cairo", sans-serif;
	font-size: 16px;
	line-height: 16px;
	padding: 5px 15px;
	box-sizing: border-box;
	color: #000;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-bottom: 10px;
	border: 1px solid #fff;
}
form input.error {
	border: 1px #f00 solid;
}
form button {
	float: right;
	display: block;
	font-family: "Cairo", sans-serif;
	font-size: 16px;
	line-height: 16px;
	padding: 10px 20px;
	color: #fff;
	background-color: #6296ff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
form .clear {
	clear: both;
}
