body {
	background-color: #CCCCCC;
	margin: 0px;
}
.logo {
	display: block;
	width: 360px;
	height 80px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
}
form {
	display: block;
	width: 270px;
	height: auto;
	padding: 25px;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	Background-color: #E8E8E8;
}
h1 {
	display: block;
	position: relative;
	text-align: center;
	margin: 0px;
}
h2 {
	display: block;
	position: relative;
	text-align: center;
	margin: 0px;
}
label {
	display: block;
	margin-top: 10px;
	font-weight: bold;
}
input {
	-webkit-appearance: none;
	border-radius: 0;
	display: block;
	width: 250px;
	outline: none;
	border: 0px;
	padding: 10px;
	margin-top: 3px;
}
.formMsg {
	display: flex;
	margin-top: 10px;
	text-align: center;
	justify-content: center;
	color: #CC0000;
}
.forgotPass {
	display: block;
	margin-top: 10px;
	text-align: right;
}
input[type=button], input[type=submit] {
	display: block;
	background-color: #666666;
	color: #FFFFFF;
	border: none;
	cursor: pointer;
	margin-top: 10px;
	width: 100%;
	height: 35px;
}
input[type=button]:hover, input[type=submit]:hover {
	opacity: 0.7;
}
#register {
	display: none;
}
#verify {
	display: none;
}
#passRecovery {
	display: none;
}
#resPass {
	display: none;
}
#updated {
	display: none;
}
#spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	animation: spin 1s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.navbar {
	width: 100%;
	background-color: #666666;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.navbar a {
	display: none;
	float: right;
	color: #FFFFFF;
	text-align: center;
	line-height: 38px;
	padding: 0px 15px;
	text-decoration: none;
	font-size: 15px;
}
.navbar a:hover {
	background-color: #999999;
}
.navbar a.navbarLogo {
	display: block;
	float: left;
	padding: 0px 0px;
	width: 167px;
	height: 38px;
	text-decoration: none;
}
.navbarLogoImg{
	width: 167px;
	height: 38px;
}
.navbar a.navbarMenu {
	display: block;
}
.navbar.expand {
	position: relative;
}
.navbar.expand a {
	float: none;
	display: block;
	text-align: center;
	background-color: #888888;
}
.navbar.expand a:hover {
	background-color: #999999;
}
.navbar.expand .navbarMenu {
	position: absolute;
	right: 0;
	top: 0;
	background-color: #666666;
}
.navbar.expand a.currentPage {
	opacity: 0.7;
}
.navbar.expand a.currentPage:hover {
	background-color: #888888;
}
.devices {
	display: inline-block;
}
.device {
	background-color: #fbfbfb;
	border-collapse: collapse;
	margin: 15px;
	width: 370px;
	font-size: 14px;
	text-align: center;
}
.device .heading {
	height: 30px;
	background-color:#999999;
	font-size: 17px;
}
.device .description {
	font-weight: 900;
	height: 24px;
}
.device img {
	width: 70px;
	height: 70px;
}
.device div {
	display: flex;
	justify-content: center;
}
.device button {
	background-color: #bfbfbf;
	outline: none;
	border: none;
	height: 33px;
	width: 39px;
}
.device button:disabled {
	opacity: 0.5;
}
.device button:active {
	opacity: 0.7;
}
@media screen and (max-width: 450px) {
	.logo {
		width: 270px;
		height 60px;
		margin-top: 30px;
	}
	form {
		width: 200px;
		margin-top: 25px;
		padding: 20px;
	}
	h1 {
		font-size: 25px;
	}
	label {
		margin-top: 8px;
		font-weight: bold;
		font-size: 12px;
	}
	input {
		margin-top: 2px;
		width: 190px;
		padding: 5px;
	}
	.formMsg {
		margin-top: 8px;
		font-size: 12px;
	}
	.forgotPass {
		margin-top: 8px;
		font-size: 13px;
		margin-bottom: 15px;
	}
	input[type=button], input[type=submit] {
		margin-top: 8px;
		height: 30px;
	}
	.device {
		margin: 10px;
		width: 300px;
		font-size: 12px;
	}
	.device .heading {
		height: 25px;
		font-size: 15px;
	}
	.device img {
		width: 55px;
		height: 55px;
	}
	.device button {
		height: 28px;
		width: 33px;
	}
}