*{
margin: 0;
padding: 0;
text-decoration: none;
box-sizing: border-box;
}	
.container{
width: 100vw;
height: 100vh;	
display: flex;
justify-content: space-between;
overflow: hidden;
}

.imageContainer{
width: 60%;
background-image: url('../images/bg_login.jpg');
background-size: cover;
background-position: center;
}

.formContainer{
width: 40%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}	

.areaForm{
width: 80%;
margin: 0 10%;
}
.areaForm .logo_form{
width: 100px;
height: 100px;
margin: 0 auto;
overflow: hidden;
margin-bottom: 10px;
}
.areaForm .logo_form img{
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}

.areaForm div{
display: flex;
flex-direction: column;
margin-bottom: 10px;
}
.areaForm div label{
font-size: 1.4em;
color: #555;
margin-bottom: 5px;
}

.areaForm div input, .areaForm div select{
height: 40px;
border:0 none;
border-radius: 10px;
padding-left: 5px;
border: 1px solid #e5e5e5;
outline: none;
}

.areaForm div button{
height: 40px;
cursor: pointer;
background: #069;
border: 0 none;
border-radius: 10px;
color: #fff;
}
@media(max-width:560px){

.container{position: relative;}
.imageContainer{width: 100%;}
.formContainer{
background: rgba(255,255,255,0.5);	
border-radius: 10px;
width: 80%;
height: 60%;
margin: 0 10%;
z-index: 10;
position: absolute;
top: 20%;
left: 0;
}

}