/* LANDING / LOGIN & REGISTRATION PAGES */


body {
  font: 15px "Open Sans", "Lucida Grande", Helvetica, Arial, sans-serif;
  line-height: 1.35em;
  color: #ccc;
  background: #343F41;
}

a, a:hover {
  color: #fff;
}


.canvas {
	display: block;
	position: relative;
	height: 100vh;
	padding: 20px;
	box-sizing: border-box;
}
.canvas .form-box {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 90%;
	max-width: 500px;
	text-align: center;
	background: #212D31;
	border-radius: 5px;
	padding: 50px 30px;
	margin: 10px auto;
}
#LoginLogo {
  max-width: 200px;
  margin: 0 auto;
}
h1 {
	font-size: 15px;
	margin: 10px auto;
}
.form-wrapper {
	display: block;
	max-width: 300px;
	margin: 0 auto;
}
.form-wrapper input {
	font-size: 12px;
	color: #fff;
	background: #343F41;
	border: none;
}
.form-group input.checkbox {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	margin-right: 10px;
}
.form-group.tos span {
	display: inline-block;
	vertical-align: middle;
	font-size: 11px;
	line-height: 1em;
	text-align: left;
}
p.register {
	font-size: 12px;
	margin-bottom: 5px;
}
p.reset {
	font-size: 11px;
}
.btn-submit {
	display: block;
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	background: #fff;
	border: none;
	padding: 15px 10px;
	margin: 10px auto;
	margin-bottom: 30px;
	transition: all 0.25s;
}
.btn-submit:hover {
	color: #fff;
	background: #ff9000;
}
.cancel {
	font-size: 12px;
	text-decoration: underline;
}





