body {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif"
}
.bad {
	color: red;
	font-size: 18px;
	padding: 0;
	margin: 0;
}
.login {
	background: url(../images/dump-truck.jpg) no-repeat;
	background-size: cover;
}
.overlaycontain{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	background-color:rgba(42,41,41,0.5);
}
.loginbox {
	width: 500px;
	height:300px;
/*	background-color:white;*/
	background-color:rgba(42,41,41,0.85);
	font-size: 34px;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
	border-radius: 5px;
	border: 2px solid rgba(0,0,0, .75);
	box-shadow: 0px 0px 19px -1px rgba(0,0,0,0.75);
	transition: all ease 1.5s;
}
.loginbox td {
	width: 50%;
	height:40px;
	text-align:center;
	font-size: 30px;
	color: white;
	transition: all ease .5s;
}
.loginbox table {
	width:100%;
	height: auto;
	margin-bottom: 10px;
}
.sbutton {
	padding: 5px 20px;
	margin-top: 20px;
	font-size: 22px;
	text-align:center;
	cursor:pointer;
	border-radius: 5px;
	background-color: white;
	transition: all ease .5s;
}
.sbutton:hover {
	background-color: #1e73be;
	color: white;
	transition: all ease .5s;
}
.loginput {
	font-size: 25px;
	height:100%;
	width:90%;
	border: 1px solid #7a7a7a;
	padding: 5px;
	/*
	text-align:center;
	border:none;
	border-bottom: 1px solid black;
	*/
}
h2 {
	margin-bottom: 10px;
	color: white;
	font-size: 45px;
	transition: all ease 1s;
}
form {
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
	
}
input[type="text"],
input[type="password"] {
  	background-color : white;
	transition: all ease .5s;
}
