* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Lucida Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
	background-color: #000;
	color: #fff;
	height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 2%;
}

.hidden {
	display: none;
}

.header {
	padding: 50pt;
	text-align: center;
}

.logo {
	height: 100px;
	width: auto;
}

.login-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	padding: 20px;
}

.login-box {
	background-color: rgba(0, 0, 0, 0.75);
	border-radius: 8px;
	width: 100%;
	display: flex;
	position: relative;
}

.login-split {
	flex: 1;
	padding: 0 20pt;
}

.login-spl-pad {
	padding: 0 8%;
}

.divider {
	position: relative;
	width: 2px;
	background-color: #444;
	margin: 0 40px;
}

.divider-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #000;
	padding: 10px;
	color: #FFFFFF;
	font-size: 20pt;
	font-weight: bold;
	background: #e50914;
	border: 14pt solid #000;
	border-radius: 50%;
	padding: 10pt;
}

h1 {
	font-size: 36pt;
	margin-bottom: 30pt;
	text-align: center;
}

.input-group {
	margin-bottom: 16px;
	position: relative;
}

.input-group p {
	font-size: 20pt;
	color: #efefef;
	margin: 10pt 0;
}

input {
	width: 100%;
	padding: 20pt;
	font-size: 24pt;
	background-color: #333;
	border: 4pt solid #333;
	border-radius: 4pt;
	color: #fff;
}

input:focus {
	outline: none;
	background-color: #454545;
	border: 4pt solid #efefef;
}

label {
	position: absolute;
	top: 70px;
	left: 20px;
	color: #8c8c8c;
	transition: all 0.2s ease;
	pointer-events: none;
}

input:focus + label,
input:not(:placeholder-shown) + label {
	top: 55px;
	font-size: 11px;
}

button {
	width: 100%;
	padding: 16px;
	background-color: #e50914;
	color: white;
	border: 4pt solid #e50914;
	border-radius: 6pt;
	font-size: 22pt;
	font-weight: bold;
	margin-top: 24px;
	cursor: pointer;
}

.error {
	color: #f6121d;
	font-size: 22pt;
	margin: 20pt 0;
}

button:hover, button:focus {
	background-color: #f6121d;
	border: 4pt solid #efefef;
}

.help-row {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	color: #b3b3b3;
	font-size: 20pt;
}

.help-row a {
	color: #b3b3b3;
	text-decoration: none;
}

.help-row a:hover {
	text-decoration: underline;
}

.signup-text {
	margin-top: 40pt;
	color: #737373;
	text-align: center;
	font-size: 28pt;
}

.signup-text strong {
	color: #e50914;
}

.signup-text a {
	color: white;
	text-decoration: none;
}

.signup-text a:hover {
	text-decoration: underline;
}

.qr-code {
	width: 40%;
	height: 40%;
	margin: 20px auto;
	background-color: white;
	padding: 10px;
	border-radius: 8px;
}

.qr-instructions {
	color: #b3b3b3;
	margin: 15px 0;
	font-size: 24pt;
	text-align: center;
}

.qr-instructions p {
	line-height: 1.5;
}