/* Override some defaults */
@import url(https://fonts.googleapis.com/css?family=Rambla:400,700);
html, body {	
	background-color: #eee;
}
body {
	padding-top: 40px;
	font-family: "Rambla",sans-serif;
}
.container {
	width: 270px;
	margin: 0 auto;
}

/* The white background content wrapper */
.container > .content {
	background-color: #fff;
	padding: 20px;
	margin: 0;
	-webkit-border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	border-radius: 10px 10px 10px 10px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
	box-shadow: 0 1px 2px rgba(0,0,0,.15);
}

.login-form {
	margin: 0;
	text-align: center;
}

.login-form img{width: 60%;display: table;margin: 0 auto;}
.login-form h2{font-family: "Rambla",sans-serif;}

.login-form form input[type=text],.login-form form input[type=password]{
	float: left;
	width: 93%;
	font-size: 14px;
	padding: 8px;
	margin-bottom: 8px;
	font-weight: 600;
}

.login-form form button{
	background: #CF0000;
	cursor: pointer;
	color: #FFF;
	font-size: 14px;
	margin: 0 10px;
	padding: 5px 35px;
	text-align: center;
	text-transform: none;
	border: none;
	transition: 0.5s ease 0s;
}
.login-form form button:hover{background:#000;transition: 0.5s ease 0s;}

legend {
	margin-right: -50px;
	font-weight: bold;
	color: #404040;
}