@charset "UTF-8";

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

/*Tablets*/
@media screen and (min-width: 768px) and (max-width: 992px) { 
    body {
        background-image: linear-gradient(to top, #49a09d, #5f2c82);
    }
    section#login {
        width: 80%;
        height: 280px;
    }

    section#login div#image {
        float: left;  
        width: 30%;
        height: 100%;   
    }

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

/*Desktops e grande telas*/
@media screen and (min-width: 992px) {
    body {
        background-image: linear-gradient(to top, #49a09d, #5f2c82);
    }

section#login {
    width: 950px;
    height: 350px;
}

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

    section#login div#form  {
    float: left;
    width: 50%;
    
}

div#form h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2em;
}

div#form > p {
    font-size: 1.1em;
    margin: 10px 5px;
}
}

