#backgroundPane {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#centerPane {
	width: 20em;
	font-size: 4vmin;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	font-family: Nunito Sans, Roboto, sans-serif;
}

@media (orientation: portrait) {
	#backgroundPane {
		background-image: url(resources/loginBg-portrait.jpg);
	}
	#centerPane {
		padding: 0px;
		width: 16em;
		font-size: 36px;
		font-size: 5vmin;
	}
	#centerPane input {
      height: 120px;
      font-size: larger;
      width: 100%;
   }
}

@media (orientation: landscape) {
	#backgroundPane {
		background-image: url(resources/loginBg-landscape.jpg);
	}
	#centerPane {
		background-color: rgba(255, 255, 255, 0.05);
		padding: 1ex 3em;
		border-radius: 5px;
		width: 20em;
		font-size: 4vmin;
	}
	#centerPane input {
	  height: 40px;
	  font-size: large;
	  width: 80%;
	}
}

@media (min-device-width: 1200px) {
	#centerPane {
		font-size: 24px;
	}
}

#loginLogo {
	display: block;
	padding: 5ex;
}

#centerPane div {
	color: white;
	text-align: center;
}

#centerPane input {
	color: white;
	margin-top:    0.5ex;
	margin-bottom: 0.5ex;
	padding: 0.5ex 1em;
	border-radius: 5px;
	box-sizing: border-box;
	border-right: none;
}

#centerPane input::placeholder {
	color: white;
}

#centerPane input:not([type=submit]) {
	border: 1px solid rgba(255, 255, 255, 0.5) ;
	background-color: transparent;
}

#centerPane input[type=submit] {
	color: white;
	background-color: #24262B;
	border: none;
	margin-top: 2ex;
}

#centerPane input[type=submit]:hover {
	color: black;
	background-color: white;
}