/**
 * Login Page
 */
.login_landing{
	background-color: #fff;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.4);
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.4);
  margin: 12px auto;
  width: 92%;
  padding: 24px 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.login_landing hr{
  background-image: url(../images/oauth_rule.png);
  background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 80%);
	background: -webkit-gradient(radial, center center, 0px, center center, 80%, color-stop(0%,rgba(0,0,0,0.1)), color-stop(100%,rgba(0,0,0,0)));
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 80%);
	background: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 80%);
	background: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 80%);
	background: radial-gradient(ellipse at center,  rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 80%);
  background-size: 100%;
  border: none;
  border-top: 1px solid #fff;
  content: "";
  display: block;
  height: 6px;
  width: 100%;
  margin: 8px 0;
}
.login_landing h1 a{
	width: 195px;
	height: 60px;
	display: block;
	background: #fff url(../images/untappd_login.png) top left no-repeat;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	margin: 0 auto;
}
.login_landing form{
	width: 90%;
	margin: 24px auto 0;
}
.login_landing form ul li{
	margin-bottom: 8px;
}
.login_landing form ul li input{
	width: 100%
}
.login_landing .actions{
	margin-top: 12px;
	text-align: center;
}
.login_landing .actions a{
	display: block;
	font-size: 20px;
	padding: 8px 0;
}
.login_landing .actions hr{
	margin-bottom: 20px;
}
.login_landing .actions .signup a{
	width: 100%;
	margin: 0 auto;
}
.login_landing .actions .signin{
	text-align: left;
	margin-bottom: 8px;
}
.login_landing .actions .signin a{
	display: block;
	width: 100%;
}
.login_landing .actions .yellow_btn{
	width: 100%;
}
.login_landing .actions .password{
	font-size: 16px;
	text-align: center;
}
.login_landing .info{
	font-weight: 600;
  margin: 16px auto 8px;
  text-align: center;
  width: 88%;
}


/* Tablet ------ */
@media screen and (min-width: 520px) {
	.login_landing form ul li{
		margin-bottom: 12px;
	}
	.login_landing{
		max-width: 520px;
		margin-top: 40px;
	}
	.login_landing form{
		max-width: 320px;
	}
	.login_landing .actions{
		margin-top: 24px;
	}
	.login_landing .actions .signup a{
		width: 80%;
	}
	.login_landing .actions .signin{
		margin-bottom: 24px;
	}
	.login_landing .actions .signin a{
		display: inline-block;
		width: 48%;
	}
	.login_landing .actions .yellow_btn{
		width: 150px;
	}
	.login_landing .actions .password{
		text-align: right;
	}
}

/* Desktop ------ */
@media screen and (min-width: 1025px) {

}