

body {
	background: #333333;
	/*** bah! 
	background: -webkit-linear-gradient(left, ,);
	background: -o-linear-gradient(right, ,);
	background: -moz-linear-gradient(right, ,);
	background: linear-gradient(to right, ,); ****/
	-webkit-transition: background 2s linear;
	-moz-transition: background 2s linear;
	-ms-transition: background 2s linear;
	-o-transition: background 2s linear;
	transition: background 2s linear;
	margin: 0;
	padding: 0;
}
html,body
{
	height: 100%;
}
body
{
	display: table;
	margin: 0 auto;
	font-family: 'Roboto', sans-serif;
	text-align: center;
}

.container
{  
    height: 100%;
    display: table-cell;   
    vertical-align: middle;    
}

.fa-prettybig {
	font-size: 1500%;
}

a {
	color: white;
	text-decoration: none;
}

.admin {
	font-size: 50%;
}

input[type="password"] {
	padding: 10px;
	border: none;
	border-bottom: solid 2px #c9c9c9;
	transition: border 0.3s;
}


input[type="password"]:focus,
input[type="password"].focus {
	border-bottom: solid 2px #969696;
}