body{
    background:url('../img/login-full-background.png') no-repeat center;  /* fallback for old browsers */
    min-height: 100vh;
    background-size: cover;
}

img {
    width: 40vw;
}

#div_corpo {
    display: grid; 
    grid-template-columns: 2fr 1fr;
    height: 100vh;
}

#texto_cabecalho{
    color: white;
}

#texto_corpo{
    margin-top: 20px;
    margin-right: 10px;
}

#h1_corpo{
    text-align: center;
    color: white;
}

#div_login {
    display: flex;
    justify-content: center;
    align-items: center;
}

#titulo_cartao_login{
    margin-bottom: 10px;
}

#logo_videira{
    width: 40%;
    position: center center; 
}

.container-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-right {
    background: url('../img/login-background.png') no-repeat center;
    border-left: 1px solid #989898;
    background-size: cover;
}

label {
    margin-bottom: 0;
}

form {
    width: 80%;
}


@media (max-width: 930px){

    #h1_corpo{
        font-size: 60px;
    }

}

@media (max-width: 768px){

    #div_corpo {
        grid-template-columns: 1fr 1fr;
    }

    #texto_cabecalho{
        font-size: 20px;
    }

    #h1_corpo{
        font-size: 20px;
    }

}

@media (max-width: 630px) {
    #div_corpo {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
}

@media (max-width: 480px){
    
    #texto_cabecalho{
        font-size: 16px;
    }

    #titulo_cartao_login{
        font-size: 16px;
    }

    #logo_sgc{
        display: none;
    }

    .btn-form{
        font-size: 14px;;
    }

}

@media (max-width: 302px){

    #logo_videira{
        width: 60%;
        position: center center; 
    }

}