/*  hobo ninja login popup stylesheet  */

@import url(http://fonts.googleapis.com/css?family=Dosis:800);

body {
	background: #fff;
	font: 13px Arial;
	padding: 10px;
	margin: 0;
}

h1, h2, h3 {
	font-weight: normal;
	font-family: 'Dosis', sans-serif;
	padding: 0;
	margin: 0;
}

h1 {
	font-size: 1.8em;
}

h2 {
	font-size: 1.4em;
	text-align: center;
}

h3 {
	font-size: 1.2em;
	text-align: center;
	margin-bottom: 6px;
}

a img {
	border: 0;
}

.left {
	width: 286px;
	border-right: 1px solid #ddd;
}

input {
	background: #fff;
	width: 250px;
	font: 14px Arial;
	color: #a9a9a9;
	padding: 8px;
	border: 1px solid #bbb;
	border-radius: 2px;
	outline: 0;
}

input:focus {
	color: #000;
	border-color: #0a81cc;
	border-radius: 3px;
	box-shadow: inset 0 0 4px rgba(0,0,0,.3);
}

input.login-submit,
input.reset-submit,
input.signup-submit {
	background: url(images/login.png) 0px 0px no-repeat;
	display: block;
	width: 90px;
	height: 30px;
	text-indent: -9999px;
	margin: 0 18px 0 0;
	border: 0;
	float: right;
	cursor: pointer;
}

input.login-submit:hover,
input.reset-submit:hover,
input.signup-submit:hover {
	background-position: 0px -30px;
}

input.login-submit:focus,
input.reset-submit:focus,
input.signup-submit:focus {
	background-position: 0px -60px;
	box-shadow: none;
}

input.reset-submit {
	background-image: url(images/reset-password.png);
}

input.signup-submit {
	background-image: url(images/signup.png);
}

a.signup-link,
a.login-link {
	display: block;
	font-size: 24px;
	font-family: 'Dosis', sans-serif;
	color: #cc0000;
	text-decoration: none;
	text-align: center;
	padding: 10px 0;
}

a.signup-link:hover,
a.login-link:hover {
	text-decoration: underline;
}

a.forgot-password {
	color: #cc0000;
	text-decoration: none;
}

a.forgot-password:hover {
	text-decoration: underline;
}

.other-logins {
	text-align: center;
}

.other-logins a img {
	height: 34px;
	margin: 6px;
	opacity: 0.75;
	filter: alpha(opacity=75);
}

.other-logins a:hover img {
	opacity: 1.0;
	filter: alpha(opacity=100);
}

