*{
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.png');
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{
height: 40px;
border:0 none;
border-radius: 10px;
padding-left: 5px;
border: 1px solid #e5e5e5;
outline: none;
}


.group-form {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espaçamento entre os checkboxes */
}
/* Estilo do label contendo o checkbox e o texto */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre o checkbox e o texto */
}

/* Estilo do checkbox */
.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4CAF50; /* Cor personalizada para o checkbox */
}

/* Estilo do texto ao lado do checkbox */
.checkbox-text {
    font-size: 16px;
    color: #333;
    user-select: none; /* Impede que o texto seja selecionado */
}

.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;
}

}