html, body {
	font-variant: small-caps;
	background-color: #000000;
	text-align: center;
	color: #32cd32;
	margin: 0;
	padding: 0;
}

h1 {
	margin: 0;
	padding: 0;
	color: white;
	font-size: 200px;
}

input {
	transition: all 0.30s ease-in-out;
	background-color: rgba(0,0,0,0);
	border: 2px solid rgb(50, 205, 50);
	color: rgb(50, 205, 50);
}

input.error {
	border-color: rgb(255,0,0);
}

input:not([type=range]):focus {
	border: 2px solid rgb(81, 203, 238);
	box-shadow: 0 0 6px rgb(81, 203, 238);
	color: rgb(81, 203, 238);
}

input[type=submit] {
	padding: 4px 10px;
	font-size: large;
}

#authent {
	font-size: large;
}

#authent input {
	font-size: 2.5em;
	text-align: center;
}

#authent input::placeholder {
	transition: all 0.40s ease-in-out;
	font-variant: small-caps;
	color: rgba(50, 205, 50, 0.4);
}

#authent input:focus::placeholder {
	color: rgba(81, 203, 238, 0.4);
}

input[type=range] {
	-webkit-appearance: none;
	border: none;
}

input[type=range]::-webkit-slider-runnable-track {
	height: 10px;
	cursor: pointer;
	background: rgba(50, 205, 50, 0.4);
	border-radius: 10px;
}

input[type=range]::-webkit-slider-thumb {
	height: 15px;
	width: 25px;
	border-radius: 7px;
	background: rgba(50, 205, 50, 1);
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -3px;
}

input[type=range]::-moz-range-track {
	height: 10px;
	cursor: pointer;
	background: rgba(50, 204, 50, 0.4);
	border-radius: 10px;
}

input[type=range]::-moz-range-thumb {
	border: none;
	height: 15px;
	width: 25px;
	background: rgba(50, 205, 50, 1);
	cursor: pointer;
}

#register fieldset {
	margin: 0 auto;
	max-width: 300px;
	border: 2px solid rgb(50, 205, 50);
}

#register legend {
	border: 1px solid rgb(50, 205, 50);
	padding: 2px 20px;
}

#register label {
	float:left;
	width: 35%;
	text-align: right;
}

#level_span {
	font-weight: bold;
	padding: 0 2px;
	border: 2px solid;
}

.defcon1 {
	color: rgb(255,255,255);
	border: rgb(255,255,255);
}

.defcon2 {
	color: rgb(255,0,0);
	border: rgb(255,0,0);
}

.defcon3 {
	color: rgb(255,255,0);
	border: rgb(255,255,0);
}

.defcon4 {
	color: rgb(0,255,0);
	border: rgb(0,255,0);
}

.defcon5 {
	color: rgb(0,0,255);
	border: rgb(0,0,255);
}
