@charset "UTF-8";

@media screen and (min-width: 769px) and (max-width: 992px) {
    body {
        background: linear-gradient(to top, #BD4890, #5F2C82);
    }

    section#login {
        width: 80vw;
        height: 280px;
    }

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

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

@media screen and (min-width: 993px) {
    body {
        background: linear-gradient(to top, #BD4890, #5F2C82);
    }

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

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

    section#login > div#form {
        float: left;
        width: 50%;
    }
    
    div#form > h1 {
        font-size: 2em;
    }
    div#form > p {
        font-size: 1.1em;
        margin: 20px 0px;
    }
}