/*
	login.css
	Stylesheet for the Login.html page

	Made with love by the McFatter 2017 Programming Team.
*/

h2{
	text-align: center;
	font-size: 30px;
	padding-bottom: 15px;
}

#main{
	width: 90%;
	background-color: white;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	padding: 3% 5%;
	margin-top: 3%;
}

.center{
	text-align: center;
}

.submit{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 15px;
    background-color: white;
    border-style: solid;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
}

a:visited, a:active{
	color: rgba(20,142,145,0.9);
}


