body {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	background-color: #000000;
}
.maintext {
	font: normal 14px Verdana;
	color:#ffffff;
}
.titletext {
	font: bold 32px Verdana;
	color:#ffffff;
}
div#gamearea {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 20px;
	height: 100%;
}
.unit-list {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 10px;
}
.unit {
	display: flex;
	flex-direction: row;
	align-items: start;
	gap: 20px;
	padding: 8px;
	background-color: #608060;
	border: 1px solid hsl(0, 10%, 5%);
	border-radius: 8px;
	color: black;
	width: 300px;
}
.unit img {
	width: 64px;
}
.button-icon {
	display: block;
}
.button-icon img {
	width: 32px;
}
.system-list {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 10px;
}
.login-title {
	margin: 0;
	color: white;
	text-align: center;
	font-size: 2rem;
	font-weight: normal;
}

#signin-content {
	--color: hsl(200, 10%, 35%);
	background-color: var(--color);
	box-shadow: 0 0 15px 0 var(--color);
	padding: 40px 30px;
	margin-top: 40px;
	width: 100%;
	max-width: 600px;
	border-radius: 15px;
}
#login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
}
.signin-input {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.signin-input label {
	color: white;
	font-weight: lighter;
}
.signin-input input {
	font-size: 1.5rem;
	padding: .5em;
	background-color: white;
	border: none;
	outline: none;
	border-radius: .25em;
	color: black;
	font-weight: normal;
}
.signin-input input:focus {
	box-shadow: 0 0 0 2px hsl(200, 10%, 5%);
}
.signin-input.error input {
	background-color: hsl(0, 100%, 80%);
}
.error-message {
	font-size: .75rem;
	color: black;
}
.login-button {
	padding: .5em 1em;
	font-size: 1.5rem;
	font-weight: normal;
	color: white;
	background-color: hsl(150, 15%, 20%);
	border: 1px solid hsl(0, 10%, 5%);
	border-radius: .25em;
	outline: none;
	cursor: pointer;
}
.login-button:hover,
.login-button:focus {
	background-color: hsl(150, 15%, 25%);
}