@import url(reset.css);
@import url(http://fonts.googleapis.com/css?family=Roboto:300,400,500,700);

body {
  color: #fff;
  background: #efece7;
  padding:100px 20px 20px 20px;
}
.login {
    width:100%;
	max-width:420px;
	background-color:#444;
	border:3px solid #222;
	padding:20px;
	margin:0 auto;
	   -moz-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.5);
	        box-shadow: 0px 1px 20px 0px rgba(0,0,0,0.3);
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	border-radius:7px;
}

h2 {font-size:25px; padding:15px; font-weight:600; text-align:center; margin:0 0 20px 0; background-color:#555;}
img {display:block; margin:0 auto 15px auto;}
.logo {
	color:#e5e5e5;
	text-align:center;
}
form {margin:0;	padding-right:20px;}

label {color:#fff; display:block;}

input[type=text],
input[type=password] {width:100%; max-width:100%; font-size:17px; margin-bottom:15px; padding:10px;}

input[type=submit] {
  background-color: #72b220;
  border: 1px solid transparent;
  margin-top:15px;
}
input[type=submit]:hover {
  background-color: #4e9500;
}

