body{
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", sans-serif;
	background:#eee;
}

input{
	width:100%;
	padding:10px;
	outline:none;
	border:none;
	border-bottom:1px solid #ccc;
	text-align:left;
	margin:0px;
	
}

#password{
	margin-top:-10px;
}

input:focus{
	background:white;
}

#container{
	padding:40px;
	background:white;
	width:100%;
	height:270px;
	border-radius:5px;
}

#logo{
	margin-bottom:20px
}

#form_login{
	box-shadow:1px;
	position:fixed;
	top:50%;
	left:50%;
	margin:50%;
	width:300px;
	height:270px;
	margin-top:-135px;
	margin-left:-150px;
	max-width:300px;
	border-radius:5px;
}

#form_login input{
	margin-bottom:20px;
}

.btn-custom{
	border-radius:5px;
	text-align:center;
	/*background:#ddd;*/
	display:inline-block;
	font-size:12px;
	outline:none;
	background:#444;
	color:white;
	padding:10px;
	
	border:none;
	transition: 0.3s all ease;
}

.btn-custom:hover{
	background:#111;
	transition: 0.3s all ease;
	color:white;
}
 
 .btn-full{
	width:100%;
 }    
 
 #login-error{
	margin-top:20px;
	width:100%;
	text-align:center;
	color:#aaa;
	display:none;
 }
 
 .error{
	border-bottom:1px solid red;
 }
 
 .error::-webkit-input-placeholder {
   color: red;
}

.error:-moz-placeholder { /* Firefox 18- */
   color: red;  
}

.error::-moz-placeholder {  /* Firefox 19+ */
   color: red;  
}

.error:-ms-input-placeholder {  
   color: red;  
}