/**
Global
**/
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	background: #F2F0EE;
	font-family: "Roboto", "arial";
	color: #;
}
a {
	padding: 2px 4px;
	text-decoration: none;
	color: #3c4146;
}
a:hover {
	background: #FFC000;
}
h1 {
    font-size: 1.75em;
    font-weight: normal;
}
/**
Layout
**/
.l-header {
	width: 100%;
	background: #191E23;
	border-bottom: 4px solid #FFC000;
}
.l-wrapper {
	width: 300px;
	margin: 0 auto;
}
.l-wrapper a {
	font-weight: bold;
}
.l-footer {
	margin: 70px 0 0 0;
	color: #666;
}
/**
App
**/
.app-logo {
	position: relative;
	display: inline-block;
	margin: 45px 0 18px 0;
	padding: 0;
}
.app-logo,
.app-logo:hover {
	background: none;
}
/**
Form
**/
.form-wrapper {
	margin: 18px 0 0 0;
}
.form-legend span,
.form-input-wrapper label {
	font-weight: bold;
}
.form-input-wrapper {
	position: relative;
	margin: 10px 0 0 0;
}
.form-medium-field {
	width: 300px;
	margin: 2px 0 0 0;
	padding: 10px;
	border: 1px solid #fff;
	border-radius: 4px;
	-webkit-appearance: none;
}
.error-message {
	display: none;
}
.form-error input {
	border-color: #cc0000;
}
.form-error .error-message {
	display: block;
	position: absolute;
	top: 2px;
	right: 2px;
	font-size: 14px;
	color: #cc0000;
}
.form-wrapper .btn {
	margin: 26px 0;
}
.form-footer a {
	margin: 0 0 0 -4px;
}
/**
Button
**/
.btn {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	background: #ccc;
	border: 0px solid #3c4146;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
}
.btn:hover {
	background: #bbb;
}
.btn[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}
.btn-primary {
	background: #ffbc00;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffc600), color-stop(100%, #fe9e00));
	background-image: -webkit-linear-gradient(#ffc600, #fe9e00);
	background-image: linear-gradient(#ffc600, #fe9e00);
	box-shadow: inset 0 1px 0 #ffd100;
}
.btn-primary:hover {
	background: #a09b96;
	box-shadow: none;
}
.btn:active {
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}
/**
Utils
**/
