@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

/*reset*/

*{
    margin: 0;
    padding: 0;
}

/*estrutura*/

.estrutura{
    display: flex;
    flex-direction: row;
}


/*area imagem*/

.imagem{
    width: 50%;
    height: 100vh;
    background-color: #F7FAFC;
}

.imagem img{
    display: block;
    margin: 30vh auto 0 auto;
}

/*area texto*/
.login{
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.login .texto{
    margin: 0 25%;
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1A202C;
}

.texto h1{
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
    margin-top: 7px;
}

.login form{
    margin: 0 25%;
}

form{
    display: flex;
    flex-direction: column;
    gap: 11px;
}

form label{
    font-family: 'Lato';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #1A202C;
}

form label:last-child{
    margin-left: 5px;
}

form input{
    font-family: 'Lato';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(26, 32, 44, 0.8);
    height: 50px;
    padding-left: 5px;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
    outline: none;
    background-color: rgba(186, 186, 186, 0.1);
}

input::placeholder{
    font-family: 'Lato';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(26, 32, 44, 0.4);
}

.lembre{
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.radio-flex{
    display: flex;
    align-items: end;
}

#radio{
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #bababa;
    background-color: #F7FAFC;
    position: relative;
}

#radio::before{
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    transform: translate(-20%, 20%);
}

#radio:focus::before{
    background-color:rgb(1, 192, 1);
}

.entrar{
    height: 50px;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    border: none;
    border-radius: 5px;
    background-color: #04C45C;
}

.entrar:hover{
    background-color: #04c45eb3;
}

.google{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 11px;
    height: 50px;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    border: none;
    border-radius: 5px;
    background-color: #000;
}

.google:hover{
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1190px){
    .imagem{
        display: none;
    }

    .login{
        width: 100%;
    }
}