.banner {
    -height: 640px;
    background: url(../img/banners/login.png) no-repeat center / cover;
    color: #FFF;
}

.banner h1 {
    font-size: 70px;
    line-height: 0.7;
}
@media(max-width: 600px) {
    .banner h1 {
        line-height: .9;
    }
}

.login {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding-top: 104px;
    padding-bottom: 104px;
    padding-right: 104px;
}

@media(min-width: 1348px) {
    .login {
        padding-left: calc((100% - 1138px) / 2);
        padding-right: calc((100% - 1138px) / 2);
    }
}

@media(max-width: 1000px) {
    .login {
        display: block;
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

.login .button {
    margin-top: 25px;
    padding: 0px 45px;
}

.login fieldset {
    width: 45%;
    padding: 0px;
}

.login fieldset .button {
    background-color: #EB8600 !important;
}

.login .input input[type=text],
.login .input input[type=email],
.login .input input[type=password] {
    background-color: #FFFFFF;
}

.login fieldset li {
    margin-top: 20px;
}

.login aside {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 460px;
    padding: 70px 70px 60px;
    background-color: #F7F7F9;
    color: #394050;
}

@media(min-width: 1025px) {
    .login aside:before {
        content: url(../img/login/top-right.png);
        position: absolute;
        width: 104px;
        height: 104px;
        top: -104px;
        right: -104px;
    }
    .login aside:after {
        content: url(../img/login/bottom-left.png);
        position: absolute;
        width: 209px;
        height: 208px;
        bottom: -104px;
        left: -209px;
    }
}

.login aside ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.login aside li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 10px;
    min-height: 40px;
    padding-left: 60px;
    padding-top: 10px;
    font-size: 16px;
    font-weight: bold;
    line-height: 26px;
    background: url(../img/interfaces/register-aside-point.png) no-repeat left center / 40px;
}

@media(max-width: 1024px) {
    .padded.login {
        padding-left: 0px;
        padding-right: 0px;
    }
    .login fieldset,
    .login aside {
        width: 50%;
        padding: 30px;
    }
}
@media(max-width: 1000px) {
    .login fieldset,
    .login aside {
        width: 100%;
        padding: 20px;
    }
}

@media(max-width: 767px) {
    .login {
        display: block;
    }
    .login fieldset,
    .login aside {
        width: 100%;
        padding: 15px;
    }
}