/*
     * Remove padrões da página
     */
* {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    color: inherit;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
    box-shadow: 0;
}

button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: none;
}

:before, :after {
    box-sizing: border-box;
}

input:focus {
    outline: none;
}

input[type=text],
input[type=password],
textarea {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
}

/*Auto clear*/
div:after,
header:after,
section:after,
article:after,
aside:after,
form:after,
menu:after,
nav:after,
ul:after,
ol:after,
li:after {
    content: " ";
    display: block;
    clear: both;
    height: 0;
    overflow: hidden;
}

::-moz-selection {
    background: #BBB;
    color: #222;
}

::selection {
    background: #BBB;
    color: #222;
}

html {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

@media all and (min-width: 1000px) {
    main {
        width: 100%;
        height: 100%;
        float: left;
        margin: 0 auto;
    }

    .container {
        width: 100vw;
        height: 100vh;
        background-color: #002c6b;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .box-login {
        width: 357px;
        height: 346px;
        float: left;
        z-index: 10;
    }

    .box-login .logo {
        background: url("../../img/site/logo.png") center / 100% no-repeat;
        width: 100%;
        height: 103px;
        float: left;
        margin-bottom: 30px;
    }

    .box-login .login,
    .box-login .senha,
    .box-login .entrar {
        width: 100%;
        height: 44px;
        float: left;
        margin-top: 28px;
        border-left: solid 6px #5ca2f9;
        background-color: #fff;
    }

    .box-login .login .login-img {
        background: url("../../img/cms/login_email.png") center / 100% no-repeat;
        width: 23px;
        height: 16px;
        float: left;
        margin: 14px 18px 0 18px;
    }

    .box-login .senha .senha-img {
        background: url("../../img/cms/login_senha.png") center / 100% no-repeat;
        width: 18px;
        height: 26px;
        float: left;
        margin: 10px 20px 0 20px;
    }

    .box-login .login .texto,
    .box-login .senha .texto {
        color: #b3b3b3;
        text-align: left;
        padding: 0 0 0 20px;
        width: 286px;
        height: 28px;
        margin: 8px 0 0 0;
        border-left: 1px solid #b3b3b3;
        float: left;
        font-size: 14px;
    }

    .box-login .entrar {
        background-color: #5ca2f9;
        color: #fff;
        text-align: center;
        padding: 11px;
        cursor: pointer;
    }

    .box-login .entrar:hover {
        opacity: .7;
    }

    .contabil {
        background: url("../../img/site/contabil.png") center / 100% no-repeat;
        position: fixed;
        top: 114px;
        right: -125px;
        width: 991px;
        height: 1142px;
        float: left;
    }
}

@media all and (max-width: 999px) {
    main {
        width: 100%;
        height: 100%;
        float: left;
        margin: 0 auto;
    }

    .container {
        width: 100vw;
        height: 100vh;
        background-color: #002c6b;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .box-login {
        width: 100%;
        /*height: 346px;*/
        /*float: left;*/
        z-index: 10;
        margin: 0 20px;
    }

    .box-login .logo {
        background: url("../../img/site/logo.png") center / 100% no-repeat;
        width: 250px;
        height: 70px;
        float: left;
        margin: 0 calc(50% - 125px) 30px;
    }

    .box-login .login,
    .box-login .senha,
    .box-login .entrar {
        width: 100%;
        height: 44px;
        float: left;
        margin-top: 28px;
        border-left: solid 6px #5ca2f9;
        background-color: #fff;
    }

    .box-login .login .login-img {
        background: url("../../img/cms/login_email.png") center / 100% no-repeat;
        width: 23px;
        height: 16px;
        float: left;
        margin: 14px 18px 0 18px;
    }

    .box-login .senha .senha-img {
        background: url("../../img/cms/login_senha.png") center / 100% no-repeat;
        width: 18px;
        height: 26px;
        float: left;
        margin: 10px 20px 0 20px;
    }

    .box-login .login .texto,
    .box-login .senha .texto {
        color: #b3b3b3;
        text-align: left;
        padding: 0 0 0 20px;
        width: calc(100% - 67px);
        height: 28px;
        margin: 8px 0 0 0;
        border-left: 1px solid #b3b3b3;
        float: left;
        font-size: 14px;
    }

    .box-login .entrar {
        background-color: #5ca2f9;
        color: #fff;
        text-align: center;
        padding: 11px;
        cursor: pointer;
    }

    .box-login .entrar:hover {
        opacity: .7;
    }

    .contabil {
        background: url("../../img/site/contabil.png") center / 100% no-repeat;
        position: fixed;
        top: 114px;
        right: -125px;
        width: 991px;
        height: 1142px;
        float: left;
    }
}