/* Style Sheet for LMS Login Page */
/* Created: 01/29/18     */

body {
	margin: 0 !important; 
	padding: 0 !important;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	height: 100%; 
	text-align: left;
	background-image: none;
}

/* Link Behavior and Appearance */
a:link {
	text-decoration: none;
	color: #000;
}
a:visited {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: none;
	color: #A52908;
}
a:active {
	text-decoration: none;
}

.LoginPage {
	height: 500px;
	background: #CCCCCC; /* For browsers that do not support gradients */
	background: linear-gradient(rgba(222,222,222,1), rgba(222,222,222,0));  /* Gray fade to transparent */
}
.CenterMe {
	margin: 0 auto;  /* Center this element */
	padding: 40px; 
	max-width: 1040px;
}
.LoginForm2 {
	margin-left: 0px;
	z-index: 1;
	background: #FFFFFF;
	max-width: 300px;
	padding: 24px;
	text-align: center;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
	border: 0;
	border-radius: 20px;
	float: left;
}
.LoginForm2 input {
  font-size: 14px;
  outline: 0;
  background: #eaeaea;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 10px;
}
.LoginForm2 input[type=submit] {
  color: #FFFFFF;
  background: #AAAAAA;
  outline: 0;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  text-transform: uppercase;
}
.LoginForm2 input[type=submit]:hover,.LoginForm2 input[type=submit]:active,.LoginForm2 input[type=submit]:focus {
  background: #999999;
}
.LoginLinks {
  font-size: 14px;
  text-align: left;
}
.LoginImage {
	float: right;
	height: auto;
	width: auto;
	max-width: 100%;
	z-index: -1;
}
.LoginLogo {
	padding-bottom: 16px; 
}

/* Image Slideshow. */
.slide {
	position: absolute;
	margin: auto auto auto auto;
	opacity: 1;
	transition: opacity 2000ms; 
}

.fadeOut {
	opacity:0;
}
#slideshow {
	height: 400px;
	width: 500px;
}

/* Hide the slideshow images if screen is too narrow. */
@media screen and (max-width: 1135px) {
	#slideshow {
		display: none;
	}
}

