@charset "UTF-8";

/*Todas as devidas media queries
Versão móvel primeiro
*/

/*Typical device breakpoints:
Mobile devices – 320px — 480px.
iPads, Tablets – 481px — 768px.
Small screens, laptops – 769px — 1024px.
Desktops, large screens – 1025px — 1200px.
Extra large screens, TV – 1201px, and more.
*/

@media screen and (min-width: 768px) and (max-width: 992px) {
    fieldset#login-section {
        width: 90vw;
        height: 90vh;
    }
    fieldset#login-section > div#image {
        float: left;
        width: 30%;
        height: auto;

        position: absolute;
        top: 50%;
        left: 17%;
        transform: translate(-50%, -50%);
    }
    fieldset#login-section > div#form {
        float: right;
        width: 65%;

        position: absolute;
        top: 50%;
        left: 65%;
        transform: translate(-50%, -50%);
    }
    fieldset#login-section > div#form > p {
    font-size: 2em;
    text-align: center;
    padding-left: 20px;
    margin-bottom: 50px;
    color: white;
    text-shadow: #000000 0px 0px 5px;
    }
}

@media screen and (min-width: 993px)
 {
    fieldset#login-section {
        width: 800px;
    }
    fieldset#login-section > div#image {
        float: left;
        width: 50%;
        height: auto;

        position: absolute;
        top: 50%;
        left: 35%;
        transform: translate(-50%, -50%);
    }
    fieldset#login-section > div#form {
        float: right;
        width: 50%;

        position: absolute;
        top: 50%;
        left: 70%;
        transform: translate(-50%, -50%);
    }
    fieldset#login-section > div#form > p {
    font-size: 2.25em;
    text-align: center;
    padding-left: 20px;
    margin-bottom: 50px;
    color: white;
    text-shadow: #000000 0px 0px 5px;
    }
 }