@charset "utf-8";

/**===============================================
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
*===============================================*/
* { 
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0 none;
	box-sizing: border-box;
}

html, body, div, span, h1, h2, p
fieldset, form, label, legend,
figure, footer, header {
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
footer { display: block; }


/**===============================================
* Layout
*===============================================*/
body {
 	padding: 50px;
	background: #f2f2f2;
	-webkit-text-size-adjust: 100%;
	font-family: Helvetica, Arial, Verdana, "Lucida Grande";
	font-size: 14px;
	line-height: 20px;
	color: #666;
	}
.wrap {
	float: none;
	margin: auto;
	padding: 15px 40px 35px 40px;
	border-radius: 20px;
	max-width: 360px;
	background: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

h1.logo {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: solid 1px #f2f2f2;
	font-size: 0;
	line-height: 0;
	text-align: center;
}
h1.logo img {
	height: 200px;
}
h2 {
	margin-bottom: 15px;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	line-height: 24px;
	color: #000;
	letter-spacing: 1px;
}

.error {
	margin-bottom: 15px;
	padding: 8px;
	border-radius: 4px;
	background: #fe0;
	text-align: center;
	color: #c00;
}


.input-block {
	margin-bottom: 10px;
	padding: 10px 15px;
	border: solid 1px #ccc;
	border-radius: 4px;
	box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.input-block.input-error {
	border-color: #f90;
}
.input-block input,
.input-block input::placeholder {
	width: 100%;
	background: none;
	font-size: 14px;
	line-height: 20px;
}

.button-block p {
	padding: 5px 0;
	text-align: center;
}
.button-block a {
	color: #999;
}
.button-block a:hover {
	color: #666;
}
button {
	padding: 9px 0;
	border: solid 1px #2388bb;
	border-radius: 4px;
	width: 100%;
	background: #3399cc /*2d3e54*/;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}



footer {
	padding: 20px 0 50px 0;
	text-align: center;
	color: #999;
}
footer a {
	text-decoration: none;
	color: #999;
}
footer a:hover {
	color: #333;
}
