@charset "UTF-8";

/* Toas as Mideas */

/* Typical device Breakpoitns


Pequenas telas: até 600px
Celular: de 600px até 768px
Tablet: 768px até 992px
Desktop: 992px até 1200px
Grandes telas: acima de 1200px
*/

@media screen and (min-width: 768px) and (max-width: 992px) {
    body {
    background-image: linear-gradient(to top, rgb(65, 65, 65), rgb(0, 0, 0));
    font-size: 1.3em;
    }
    
    section#login {
        width: 90vw;
    }
    
    section#login > div#imagem {
        float: left;
        width: 50%;
        height: 100%;
    }
    
    section#login > div#formulario {
        float: right;
        width: 50%;
    }
    
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    body {
    background-image: linear-gradient(to top, rgb(65, 65, 65), rgb(0, 0, 0));
    font-size: 1.5em;
    }

    section#login {
        width: 90vw;
    }

     section#login > div#imagem {
        float: left;
        width: 50%;
        height: 100%;
    }
    
    section#login > div#formulario {
        float: right;
        width: 50%;
    }
}

@media screen and (min-width: 1200px){
    body {
    background-image: linear-gradient(to top, rgb(65, 65, 65), rgb(0, 0, 0));
    font-size: 1.7em;
    }

    section#login {
        width: 90vw;
    }
    
     section#login > div#imagem {
        float: left;
        width: 50%;
        height: 100%;
    }
    
    section#login > div#formulario {
        float: right;
        width: 50%;
    }
}