@media screen and (max-width:399px){	
	.input_info{
		width:90%;
		height:30px;
		font-size:15px;
	}
}
@media screen and (min-width:400px){
	.input_info{
		width:90%;
		height:50px;
		font-size:20px;
	}
}
body{
	background-color:#eeeeee;
}

#background_container{
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: #0d0d0d center center no-repeat;
	background-size: cover;
}

#login_container{
	z-index: 1;
	position: relative;
	max-width:500px;
	padding-bottom: 20px;
	margin: 10% auto 0 auto;
	background-color:white;
	border-radius: 3px;
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.1);
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.1);
}

#logo_container{
	position: relative;
	display: block;
	padding: 20px;
	border-radius: 3px 3px 0 0;
	background-color: #0d0d0d;
}

.input_info{
	display:block;
	margin:50px auto;
	border:none;
	border-bottom:1px solid grey;
	background-color:transparent;
	color:black;
	padding:5px;
}

img{
	display:block;
	max-width:75px;
	width:100%;
	height:auto;
	margin: auto;
}

#feedback{
	margin: 0 20px;
	padding: 20px;
	background-color: #d71d1d;
	color: white;
	border-radius: 3px;
}

#connect{
	display: block;
	width: 50%;
	margin: 50px auto 0;
	background-color: white;
	cursor:pointer;
	border-radius: 30px;
	padding: 20px;
	
	border: 1px solid;
	text-transform: uppercase;
		
	transition:ease all 0.2s;
	-moz-transition:ease all 0.2s;
	-webkit-transition:ease all 0.2s;
}

#connect:hover{
	background-color: #0d0d0d;
	color:white;
}