@charset "UTF-8";

/*
Typical Device Breakpoints

Extra small devices (phones, 600px and down) 
Small devices (portrait tablets and large phones, 600px and up) 
Medium devices (landscape tablets, 768px and up) 
Large devices (laptops/desktops, 992px and up) 
Extra large devices (large laptops and desktops, 1200px and up) 

*/

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

        flex-direction: row;
    }
    div#imagem {
        width: 40%;
        height: 100%;
    }
    div#formulario {
        width: 60%;
        justify-content: center; 
   }
}

@media  screen and (min-width: 992px)  {
    body {
        background-image: linear-gradient(to top, #49a09d, #5f2c82);
    }   
    section#login {
        width: 960px;
        height: 370px;
        flex-direction: row-reverse;

    }
    div#imagem {
        width: 45%;
        height: 100%;
    }
    div#formulario {
        justify-content: center;
        width: 55%;
    }
    #formulario h1 {
        font-size: 2em;
    }
    #formulario p {
        font-size: 0.9em;
        margin: 20px 0px;
    }
}