html, body {
	margin: 0;
	font-family: Circular,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-style: normal;
	font-weight: 100;
	height: 100%;
	transition: background-color .3s;
}
input[type=button] {
	font-family: Circular,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-style: normal;
	font-weight: 300;
}
h1 {
	font-family: 'Staatliches', cursive;
}
.switch {
	position: absolute;
	right: 30px;
	top: 30px;
	width: 60px;
	height: 34px;
	display: inline-block;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .3s;
	transition: .3s;
	border-radius: 50px;
}
.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .3s;
	transition: .3s;
	border-radius: 50%;
}
input:checked + .slider {
	background-color: black;
}
input:focus + .slider {
	box-shadow: 0 0 0 black;
}
input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}
.slider-desc {
	position: absolute;
	top: 42px;
	font-size: 14px;
	left: -5px;
	white-space: nowrap;
	font-weight:;
}
.logo-header {
	width: 100%;
	height: 100px;
	border-bottom: 1px solid #ccc;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	padding: 24px 0;
}
.login-container {
	width: 42%;
	height: auto;
	margin: 0 auto;
	min-width: 500px;
}
.continue-login-text {
	display: flex;
	justify-content: center;
	font-size: 1.2rem;
}
.continue-login-text h4 {
	margin: 30px 0 0 0;
}
.login-input-container {
	height: 110px;
}
.login-input-container h4 {
	margin: 10px 0;
}
.login-input-container input {
	width: 100%;
	height: 33px;
	border-radius: 0;
	border: 1px solid #ccc;
	padding: 6px 12px;
	border-radius: 3px;
	font-size: 14px;
}
.login-input-container input:focus {
	outline: none;
	border: 1px solid #aaa;
}
.login-submit-container {
	display: flex;
	justify-content: center;
	margin: 50px 0px;
}
.login-submit-container input {
	width: 60%;
	height: 48px;
	border-radius: 24px;
	border: 1px solid #ccc;
	background-color: black;
	color: orange;
	font-size: 1.2rem;
	font-weight: bold;
	font-family: 'Staatliches', cursive;
	letter-spacing: 2px;
	transition: background-color .6s ease;
	transition: opacity .6s;
}
.login-submit-container input:hover {
	cursor: pointer;
	opacity: 0.8;
}
.spacer {
	border-bottom: 1px solid #ccc;
	margin: 30px 0;
}
.new-account-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.new-account-container h4 {
	font-weight: bold;
}
.new-account-button {
	width: 60%;
	height: 48px;
	border-radius: 50px;
	border: 2px solid #343764;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	font-family: 'Staatliches', cursive;
	letter-spacing: 3px;
	transition: background-color .6s ease, color .3s ease;
}
a {
	text-decoration: none;
	color: inherit;
}
.new-account-button:hover {
	cursor: pointer;
	background-color: #343764;
	color: white;
}
.answerInvalid input{
	border: 2px solid red;
}
.answerInvalidSpan {
	display: block;
	color: #f73e3e;
	margin: 6px 0px 24px 18px;
	font-weight: bold;
}


/* Darkmode */
body.dark-theme {
	background-color: #373737;
}
body.dark-theme .logo-header{
	color: white;
}
body.dark-theme h4 {
	color: #e3e3e3;
}
body.dark-theme .login-submit-container input {
	background-color: #F59E0B;
	border: 2px solid #F59E0B;
	color: white;
	font-weight: 100;
}
body.dark-theme .login-submit-container input:hover {
	opacity: .6;
}
body.dark-theme .new-account-button {
	border: 2px solid #101820FF;
	color: white;
}
body.dark-theme .new-account-button:hover {
	background-color: #101820FF;
	color: #006B38FF;
}