body {
	margin: 0;
	padding: 0;
	font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
	height: 100vh;
	width: 100%;
	color: var(--color);
	background-color: #f7fbfa91 !important;
}

h1 {
	font-size: 5em;
	margin: 40px 0;
}

.formWrapper {
	/* height: 100%; */
	width: 100%;
	/* display: grid; */
	display: flex;
	/* align-items: center; */
	justify-content: center;
	/* margin-top: 50px; */
}

form {
	/* width: 95vw; */
	/* max-width: 400px; */
	/* box-sizing: border-box; */
	/* padding: 50px 0; */
	/* width: 95%; */
}

form h1 {
	margin: 0 0 15px 0;
	font-size: 2em;
}

.inputblock {
	position: relative;
	display: block;
	padding: 10px 0;
	clear: both;
}

.inputblock input {
	width: 100%;
	padding: 7px;
	box-sizing: border-box;
	display: block;
	/* background: transparent; */
	/* outline: none; */
	font-family: inherit;
	font-size: 15px;
	color: inherit;
	/* border: 0; */
	margin-top: 2px;
	/* border-bottom: 1px solid var(--color); */
}

.inputblock label {
	display: block;
	font-size: 13px;
	/* color: var(--dull); */
	/* text-transform: uppercase; */
	letter-spacing: 1px;
	/* font-weight: 300; */
}

.errcontainer {
	font-size: 14px;
	opacity: 1;
	transition: opacity .3s;
}

.err {
	margin: 5px 0;
	color: var(--error);
}

.err ul {
	list-style-type: none;
	margin: 0;
	padding-inline-start: 2em;
}

form a {
	position: relative;
	margin: 0;
	line-height: 1.4em;
	display: inline-block;
	/* color: var(--dull); */
	/* color: #1acc8d; */
	/* text-decoration: none; */
	/* transition: color .3s; */
}

.errorcontainer a {
	display: inline;
	line-height: normal;
	text-decoration: underline;
	color: inherit;
}

.message {
	text-align: center;
}

.message h2 {
	font-size: 4em;
}

.logo {
	height: 60px;
	/* margin: 20px; */
	margin-top: 20px;
	margin-left: 30px;
}

#visitorId {
	display: None;
}

#tos {
	margin-right: 20px;
}

.altracka-box {
	border-radius: 5px;
	border-color: #9e9e9e69;
	background: #ffffff;
	border-width: 1px;
	border-style: solid;
	width: 100%;
	height: 100%;
	padding: 40px;
}

.altracka-box-shell {
	display: flex;
	padding: 20px;
}

.formWrapper .altracka-box {
	max-width: 450px;
	margin: 20px;
}

/* The div I want to color has no class or id but it's a parent of .logo so use that as a selector */
div:has(.logo) {
	background-color: #0000004f;
	text-align: left !important;
}