
html,body{
	margin: 0px;
	padding: 0px;
	height: 100%;
	transition: all 0.8s;
}

#image{
	width: calc(100% - 375px);
	min-height: 100%;
	float: left;
	position: relative;
	background-color: #000000;
}

#image::before{
	background: url('../img/fondo.jpg') no-repeat center center;
	background-size: cover;
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width:calc(100% - 375px);;
	opacity: .7;
}

#body{
	width: 375px;
	min-height: 100%;
	float: left;
	position: relative;
}

#body #form{
	width: 80%;
	height: 150px;
	margin: 0 auto;
	margin-top: 50px;
	text-align: center;
}

#body #form .logo{
	width: 100%;
    margin: 0 auto;
    text-align: center;
}

#body #form .form-title{
	margin: 20px 0px 40px;
}

#body #form .btn{
	width: 100%;
    color: #fff;
    background: #ff8b00;
}

#body #form .btn:hover{
    background: #ff8b00e0;
}

#body #footer{
	bottom: 22px;
	position: absolute;
	text-align: center;
	width: 100%;
}

#body #footer small{
	letter-spacing: 1px;
}



/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	#image{
		display: none;
	}
	#body{
		margin: 0 auto;
		width: 80%;
		float: none;
	}
	#body #footer{
		width: 100%;
	}
	#body #form{
		margin-top: 0px;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}
