@charset "UTF-8";

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

    #login{
        width: 80vw;
    }

    div#imagem{
        float: left;
        width: 30%;
        height: 100%;
    }

    #forms{
        float: right;
        width: 70%;
    }

    input{
        width: 360px;
    }
}

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

    #login{
        width: 950px;
    }

    div#imagem{
        float: left;
        width: 50%;
        height: 100%;
    }

    #forms{
        float: right;
        width: 50%;
    }

    #forms > h1{
    text-align: center;
    font-size: 2em;
    }

    #forms > p{
    font-size: 1.2em;
    }

    input{
        width: 400px;
    }
}