/* Stylesheet */


/* Imports */

@import url(animate.css);

/* Selections */

::selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

::-moz-selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

/* Basics */

html, body {
	width: 100%;
	height: 100%;
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	color: #444;
	-webkit-font-smoothing: antialiased;
	background: #717171;
	
}

#container {
	position: fixed;
	width: 340px;
	height: 272px;
	top: 50%;
	left: 50%;
	margin-top: -140px;
	margin-left: -170px;
	background: #fff;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
	-webkit-animation-name: bounceIn;
	-webkit-animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: bounceIn;
	-moz-animation-fill-mode: both;
	-moz-animation-duration: 1s;
	-moz-animation-iteration-count: 1;
	-moz-animation-timing-function: linear;
	animation-name: bounceIn;
	animation-fill-mode: both;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: linear;
}

form {
	margin: 0 auto;
	margin-top: 20px;
}

label {
	color: #555;
	display: inline-block;
	margin-left: 18px;
	padding-top: 10px;
	font-size: 14px;
}

p a {
	font-size: 11px;
	color: #aaa;
	float: right;
	margin-top: -13px;
	margin-right: 20px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

p a:hover {
	color: #555;
}

input {
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	font-size: 18px;
	outline: none;
}

input[type=name],
input[type=password] {
	color: #A360CA; /*#006699;*/
	padding-left: 10px;
	margin: 10px;
	margin-top: 12px;
	margin-left: 18px;
	width: 290px;
	height: 35px;
	border: 2px solid #794188; /*#3c484b;*/
    background-color: #E9E9E9;
}

input[type=name]:focus,
input[type=password]:focus {
    background-color: #F8F7F6;
}

#lower {
	background: #794188; /*#003869;*/
	width: 100%;
	height: 69px;
	margin-top: 20px;
	box-shadow: inset 0 1px 1px #fff;
	border-top: 1px solid #ccc;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.error {
	margin-left: 15px;
	margin-top: 18px;
	font-size: 16px;
	font-weight:bold;
	color: white;
	text-shadow: 0px 0px 10px black;
}

input[type=submit] {
	float: right;
	margin-right: 20px;
	margin-top: 20px;
    color: #794188; /*#000;*/
    border-radius: 5px;
    border: 1px solid #794188; /*#000;*/
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    width: 80px;
    font: bold 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #d5d5d5;
    height: 30px;
    cursor: pointer;
}

input[type=submit]:hover {
    background: #c5c5c5;
    text-shadow: 2px 2px 5px #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .7);
}

input[type=submit]:active {
	background: #575572;
    border: 3px solid #000;
    color: #fff;
}



