html{
	height: 100%;
}

html {
	background-image: url("/static/contribute/images/login_background.png");
	background-position: center;
	background-repeat:no-repeat;
	background-size: cover;
}

#login-title{
	font-family: 'Source Sans Pro',	sans-serif;
	font-size: 25pt;
	color: white;
	font-weight: 600;
	
	position: relative;
	top: 20vh;
  left: 0vw;
  text-align: center;
}

label {
  font-family: 'Source Sans Pro',	sans-serif;
	font-size: 15pt;
	color: white;
	
	position:relative;
	top: 25vh;
  left: 50%;
  margin-left: -200px;
  text-align: center;
}

input{
	border: 3px solid #b6b1a9;
	width: 250px;
  padding: 6px 20px;
  margin: 20px 0;
  box-sizing: border-box;
  font-family: 'Source Sans Pro',	sans-serif;
	font-size: 12pt;
	text-align: center;
	
	position:relative;
	top: 25vh;
  left: 50%;
  margin-left: 10px;
  text-align: center;
}
	
input:focus {
  border: 3px solid #555;
}

#login-button{
	font-family: 'Source Sans Pro',	sans-serif;
	font-size: 15pt;
	text-decoration: none;
	color: #8C1515;
	background-color: white;
	padding: 8px 64px;
	border: 4px solid #8C1515;
	-webkit-transition-duration: 0.3s; /* Safari */
  transition-duration: 0.3s;
	
	position:relative;
	top: 30vh;
  left: 50%;
  margin-left: -80px;
  text-align: center;
}

#login-button:hover{
	color: white;
	background-color: #8C1515;
}