@charset "UTF-8";

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

@media screen and (min-width: 768px) and (max-width: 992px) {
    body {
        background-image: linear-gradient(to bottom, #5f2c82, #49a09d);
    }
    
    section#login {
        width: 80vw;
        height: 300px;
    }

    section#login > div#imagem {
        float: left;
        width: 30%;
        height: 100%;
        background-position: center center;
    }

    section#login > div#formulario {
        float: right;
        width: 70%;
    }

    form > input[type=submit] {
        display: inline-block;
        width: 100px;
        margin-top: 10px;
    }

    form > a.botao {
        display: block;
        width: 225px;
        margin-top: 5px;
    }
}

@media screen and (min-width: 993px) {
    body {
        background-image: linear-gradient(to bottom, #5f2c82, #49a09d);
    }

    section#login {
        width: 900px;
        height: 310px;
    }

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

    section#login > div#formulario {
        float: left;
        width: 60%;
    }

    form > input[type=submit] {
        display: inline-block;
        width: 100px;
       margin-top: 5px;
    }

    form > a.botao {
        display: inline-block;
        width: 225px;
        margin-top: 5px;
        margin-left: 200px;
    }
}