@charset "UTF-8";

body {
	background: black;
	background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50% }
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

.grid-container { 
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	grid-template-areas: ". . ." ". login_box ." ". . .";
	height: 98vh;
}

img {
	width:80vh;	
}

table {
	display: grid;
	place-items: center center;
	padding-top: 3vh;
}

td {
	text-align:center;
}

input, button {
	border-radius: 10px;
	border: none;
	height: 6vh;
	width: 96%;
	margin: 6px;
	padding: 5px;
	color: grey;
	font-size: 2.5vh;
	text-align:center;
}

input[type=submit] {
	color:black;
	background: #aaa;
}

input[type=submit]:hover {
	background:grey;
	color: white;
	cursor: pointer;
}

.login_box { 
	font-family: Verdana, sans-serif;
	grid-area: login_box;
}