@font-face {
	font-family: clean_font; src: url('../../fonts/clean_font.ttf');
} 

h1 {
	font-family: clean_font;
	font-size: 120px;
	color:lime;
	margin: 0px;
	display: inline;
	font-weight: normal;
}

h2 {
	font-family: clean_font;
	font-size: 120px;
	color:darkgray;
	margin: 0px;
	display:inline;
	font-weight:normal;
}

p1 {
	font-family: clean_font;
	font-size: 18px;
	color:white;
	margin: 0px;
}

p2 {
	font-family: san-serif;
	font-size: 18px;
	font-weight: bold;
	color:black;
	margin: 0px;
}

bad {
	font-family: clean_font;
	font-size: 18px;
	margin: 0px;
	color: red;
}

input[type=text]{
	width:120px;
	height:30px;
	font-family:clean_font;
	font-size:22px;
	margin: 1px;
	display: inline-block;
}

input[type=password]{
	width:120px;
	height:30px;
	font-size:22px;
	margin:1px;
	font-family:clean_font;
	display: inline-block;
}

input[type=button] {
	border: solid white 1px;
	border-radius: 3px;
	background-color: white;
	height:40px;
	width:120px;
	font-family: clean_font;
	font-size: 16px;
}

body {
    animation: background 2s forwards;
    -webkit-animation: background 4s forwards;
    -moz-animation: background 4s forwards; 
}
@-webkit-keyframes background {
    from {
        background:white; 
    }
    to {
        background: #1F1F1F;
    }
}
@-moz-keyframes background {
    from {
        background:white;
    }
    to {
        background: #1F1F1F;
    }
}
@keyframes background {
    from {
        background:white;
    }
    to {
        background: #1F1F1F;
    }
}

#main-container {
	position:absolute;
	display: inline-block;
	left: 50%;
	margin-left:-350px;
	top: 50%;
	margin-top:-250px;
	width:700px;
	text-align: center;
	border: solid green 0px;
	padding: 1px;
}

#login-container {
	position:relative;
	padding:0px;
	text-align:center;
	border: 0px solid black;
	display: inline-block;
}

#Farm {
	position: relative;
	border:solid black 0px;
	left:0px;
	animation-name: farm_move;
	animation-duration: 1s;
	animation-direction: reverse;
	display: inline-block;
}

#Drive {
	position: relative;
	border:solid black 0px;
	right:0px;
	animation-name: drive_move;
	animation-duration: 1s;
	animation-direction: reverse;
	display: inline-block;
}

@keyframes farm_move {
	100%   {left:-400px;}
}

@keyframes drive_move {
	100%   {right:-400px;}
}

.div_button {
	position:relative;
	text-align:center;
	height:20px;
	padding:5px;
	width:125px;
	border: solid black 1px;
	border-radius: 5px;
	display: inline-block;
}

#bad-password-container {
	position:relative;
	border: solid red 0px;
	text-align:center;
	display:inline-block;
	width:200px;
}

#button-container {
	position:relative;
	border: solid red 0px;
	text-align: center;
	display:inline-block;
	margin-top:15px;
	margin-bottom:1px;
}

#bad-login-container {
	position:absolute;
	border: solid red 0px;
	text-align: center;
	display:inline-block;
	height: 900px;
	width:95%;
}

#switch-farm-container {
	position: 	absolute;
	display: 	inline-block;
	width: 		400px;
	height: 	200px;
	border: 	solid black 0px;
	padding:	10px;
	text-align: center;
	left: 		50%;
	margin-left:-200px;
	top: 		50%;
	margin-top: -100px;
}

#footer {
	position: absolute;
	border: solid black 0px;
	text-align: center;
	display: inline-block;
	height:50px;
	width: 500px;
	left: -250px;
	margin-left:50%;
	bottom:0px;
}