/* --- Reset --- */
* { 
   -moz-box-sizing: border-box; 
   -webkit-box-sizing: border-box; 
   box-sizing: border-box; 
   padding: 0px;
   margin: 0px;
}

html, body { 
   height: 100%; 
   width: 100%; 
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  background-color: #ebebee;
  color: black;
}

::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder { 
  color:    #999;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

p {
  font-size: 18px;
}

a:hover, input, textarea, select, button {
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  transition:.5s;
   -webkit-appearance: none;
   border-radius: 0px;
   font-family: 'Poppins', sans-serif;
}


/* --- Variables --- */
:root {
   --main-bg-color: #f24a59;
	--main-bg-color-hov: #d42c3b;
   --main-bg-text-color: white;
   --main-bg-text-color-hov: white;
}

/* --- Main styles --- */
.inner {
	max-width: 1400px;
	width: 100%;
	display: block;
	margin: 0 auto;
}

.main {
	
}

.loginWindow {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	border-left: solid 15px var(--main-bg-color);
	padding: 15px 0;
	padding-left: -15px;
}

.loginWindow .loginForm, .loginWindow .registerForm {
	max-width: 600px;
	width: 100%;
	display: inline-block;
}

.loginWindow input {
	width: 100%;
	display: inline-block;
	padding: 20px;
	border: solid 1px #ccc;
	border-radius: 3px;
	font-size: 20px;
}

.loginWindow label {
	width: 100%;
	display: block;
	margin-top: 10px;
	margin-bottom: 3px;
}

.loginWindow .turnstile {
	height: 72px;
	margin-top: 20px;
}

.loginWindow .otherOffering {
	margin-top: 30px;
}

.loginWindow .otherOffering a {
	color: #0099cc;
}

.loginWindow button {
	background: var(--main-bg-color);
	color: var(--main-bg-text-color);
	padding: 20px;
	font-size: 18px;
	border-radius: 3px;
	padding: 16px 32px;
	border: none;
	font-weight: bold;
	cursor: pointer;
	margin-top: 10px;
}

.loginWindow button:hover {
	background: var(--main-bg-color-hov);
	color: var(--main-bg-text-color-hov);
}

.forgotPasswordLink {
	margin-top: 5px;
	color: #0099cc;
	display: inline-block;
}

.loginWindow .note {
	padding: 20px;
	border: solid 2px var(--main-bg-color);
	background-color: white;
	width: 100%;
	font-size: 18px;
	border-radius: 3px;
	margin-top: 10px;
}

.main h1 {
	font-size: 50px;
	font-weight: bold;
}

/* --- Dark mode --- 
@media (prefers-color-scheme: dark) {
	body {
		background-color: #2b2b2b;
		color: #ccc !important;
	}
}

*/

/* Small desktop sizing issues --- */
@media only screen and (max-width: 1410px) {
	.inner {
		width: 95%;
	}
}

/* --- Mobile styles --- */
@media only screen and (max-width: 800px) {

}