@charset "utf-8";
/* CSS Document */

/* ---------- GENERAL ---------- */



h1 { margin: 0; }

a {
	color: #999;
	text-decoration: none;
}

a:hover { color: #1dabb8; }

fieldset {
	border: none;
	margin: 0;
}

input {
	border: none;
	font-family: inherit;
	font-size: inherit;
	margin: 0;
	outline: none;
	-webkit-appearance: none;
}

input[type="submit"] { cursor: pointer; }

.clearfix { *zoom: 1; }
.clearfix:before, .clearfix:after {
	content: "";
	display: table;	
}
.clearfix:after { clear: both; }

/* ---------- LOGIN-FORM ---------- */

#login-form {
	margin: 50px auto;
	width: 300px;
	box-shadow: 4px 4px 18px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

#login-form h1 {
	background-color: #000;
	border-radius: 10px 10px 0 0;
	color: #fff;
	font-size: 14px;
	padding: 20px;
	text-align: center;
	text-transform: uppercase;
}

#login-form fieldset {
	background: #fff;
	border-radius: 0 0 5px 5px;
	padding: 20px;
	position: relative;
}

#login-form fieldset:before {
	background-color: #fff;
	content: "";
	height: 8px;
	left: 50%;
	margin: -4px 0 0 -4px;
	position: absolute;
	top: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 8px;
}

#login-form input {
	font-size: 14px;
}

#login-form input[type="email"],
#login-form input[type="password"] {
	border: 1px solid #dcdcdc;
	padding: 12px 10px;
	width: 238px;
}

#login-form input[type="email"] {
	border: 2px solid #77797a;
    	border-radius: 10px;
	border-width: 1px;
}
#login-form input[type="email"]:hover {
	border: 2px solid #09847a;
    	border-radius: 10px;
	border-width: 1px;
	box-shadow:1px 1px 1px 0 #09847a  , -1px -1px 2px 0 #09847a  ;
	
}

#login-form input[type="password"] {
	
	border: 2px solid #77797a;
    	border-radius: 10px;
	border-width: 1px;  ;
}

#login-form input[type="password"]:hover {
	
	border: 2px solid #09847a;
    	border-radius: 10px;
	border-width: 1px;
	box-shadow:1px 1px 1px 0 #09847a  , -1px -1px 2px 0 #09847a  ;
}

#login-form input[type="submit"] {
	background: #3c3c3d;
	border-radius: 3px;
	color: #ffffff;
	float: right;
	font-weight: 900;
	margin-top: 20px;
	padding: 12px 20px;
}

#login-form input[type="submit"]:hover { background: #09847a; color: #ffffff;}

#login-form footer {
	font-size: 12px;
	margin-top: 16px;
}

.info {
	background: #e5e5e5;
	border-radius: 50%;
	display: inline-block;
	height: 20px;
	line-height: 20px;
	margin: 0 10px 0 0;
	text-align: center;
	width: 20px;
}
