#banner {
	width: 100%;
	min-height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

	.contentBox {
		margin: 20px auto 20px auto;
		padding: 20px;
		width: 100%;
		max-width: 500px;
		border: 1px solid #606060;
		border-radius: 10px;
		background-color: rgba(255, 255, 255, 0.85);
		color: #606060;
	}
	
		.contentBox h1 {
			margin-top: 0px;
		}

		.contentBox #message {
			color: #ff0000;
			font-size: 120%;
			font-weight: bold;
		}

		.contentBox .linkButton,
		.contentBox input
		{
			width: 100%;
			max-width: 500px;
		}
		
		.contentBox input[type="text"],
		.contentBox input[type="password"]
		{
			padding: 10px;
			font-size: 120%;
			font-weight: bold;
		}
		
		.contentBox input[type="text"]:focus,
		.contentBox input[type="password"]:focus
		{
			background-color: #ffff80;
		}

