* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

body {
    background-color: #faf8f6 !important;
    font-family: "Montserrat", sans-serif !important;
    overflow-x: hidden;
}

article,
aside,
details,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    text-decoration: none;
}

h1 {
    color: #333461;
}

img {
    border: none;
}

hr {
    color: #7a7a7a !important;
}

a {
    color: #041ae0 !important;
}

*:focus {
    outline: none;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.bg-aluno {
    background: url("../img/banner-mock.png") no-repeat ;
    background-size: cover;
	
}

.bg-gov {
    background: url("../img/gov.jpg") no-repeat center center scroll;
    background-size: cover;
}

.bg-company {
    background: url("../img/banner-mock.png") no-repeat;
    background-size: cover;
}

.bg-illustration {
    position: relative;
    height: 100vh;
    width: 1194px;
    float: left;
    -webkit-animation: bgslide 2.3s forwards;
    animation: bgslide 2.3s forwards;
}

.bg-illustration img {
    width: 248px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: auto;
    margin: 19px 0 0 25px;
}

@-webkit-keyframes bgslide {
    from {
        left: -100%;
        width: 0;
        opacity: 0;
    }
    to {
        left: 0;
        width: 1194px;
        opacity: 1;
    }
}

@keyframes bgslide {
    from {
        left: -100%;
        width: 0;
        opacity: 0;
    }
    to {
        left: 0;
        width: 1194px;
        opacity: 1;
    }
}

.login {
    overflow-y: hidden;
    float: left;
    margin: 0 auto;
    width: calc(100% - 1194px);
}

.login .container {
    width: 450px;
    margin: 0 auto;
    position: relative;
}
.login h1 {
    font-size: 35px;
    font-weight: bolder;
}
.login .login-form {
    margin-top: 30px;
    overflow: hidden;
}
.login .login-form form {
    display: -ms-grid;
    display: grid;
}
.login .login-form form input,
.login .login-form form select {
    font-size: 16px;
    font-weight: normal;
    background: white;
    border: solid 1px #d0d5dd;
    margin: 10px 0;
    height: 48px;
    padding: 0 20px;
    border-radius: 8px;
}

.login .login-form form select {
    background: white url(../img/down.svg) 94% no-repeat;
    background-position-x: calc(100% - 20px);
    background-size: 24px;
    line-height: 2.2;
    text-transform: capitalize;
    width: 100%;
}

.login .login-form form button[type="submit"] {
    background: #071384;
    border: none;
    margin-top: 30px;
    margin-bottom: 20px;
    width: 100%;
    height: 58px;
    text-transform: uppercase;
    color: white;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 20px;
}

.btn {
    width: 286px !important;
}

.login .login-form form button[type="submit"]:hover {
    background: #041ae0;
}

.login .remember-form {
    position: relative;
    margin-top: -30px;
}
.login .remember-form input[type="checkbox"] {
    margin-top: 9px;
}
.login .remember-form span {
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    top: 32px;
    color: #3b3b3b;
    margin-left: 15px;
}

.login .forget-pass a {
    font-size: 16px;
    position: relative;
    font-weight: 600;
    color: #071384;
    text-decoration: underline;
}

.login .login-form span {
    margin-top: -28px;
    background: #faf8f6;
    padding: 0 15px;
    z-index: 1;
}

@media only screen and (min-width: 1024px) and (max-width: 1680px) {
    .bg-illustration {
        width: 50%;
        -webkit-animation: none;
        animation: none;
    }

    .login {
        width: 50%;
    }
}
/* Display 12", iPad PRO Portrait, iPad landscape */
@media only screen and (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }

    @-webkit-keyframes slideIn {
        from {
            left: -100%;
            opacity: 0;
        }
        to {
            left: 0;
            opacity: 1;
        }
    }

    @keyframes slideIn {
        from {
            left: -100%;
            opacity: 0;
        }
        to {
            left: 0;
            opacity: 1;
        }
    }

    .bg-illustration {
        float: none;
        -webkit-animation: slideIn 0.8s ease-in-out forwards;
        animation: slideIn 0.8s ease-in-out forwards;
        width: 100%;
        height: 190px;
        text-align: center;
    }
    .bg-illustration img {
        width: 100px;
        height: auto;
        margin: 20px auto !important;
        text-align: center;
    }
    .bg-illustration .burger-btn {
        left: 33px;
        top: 29px;
        display: block;
        position: absolute;
    }
    .bg-illustration .burger-btn span {
        display: block;
        height: 4px;
        margin: 6px;
        background-color: #fff;
    }
    .bg-illustration .burger-btn span:nth-child(1) {
        width: 37px;
    }
    .bg-illustration .burger-btn span:nth-child(2) {
        width: 28px;
    }
    .bg-illustration .burger-btn span:nth-child(3) {
        width: 20px;
    }

    .login {
        float: none;
        margin: 0 auto;
        width: 100%;
    }
    .login .container {
        -webkit-animation: slideIn 0.8s ease-in-out forwards;
        animation: slideIn 0.8s ease-in-out forwards;
        width: 85%;
        float: none;
    }
    .login .container h1 {
        font-size: 25px;
        margin-top: 40px;
    }
    .login .container .login-form {
        margin-top: 30px;
    }
    .login .container .login-form form input {
        height: 45px;
    }
    .login .container .login-form form button[type="submit"] {
        height: 45px;
    }
    .login .container .login-form .remember-form {
        position: relative;
        margin-top: -14px;
    }
    .login .container .login-form .remember-form span {
        font-size: 16px;
        margin-top: 22px;
        top: inherit;
    }

    .forget-pass a {
        font-size: 16px;
        position: relative;
        font-weight: normal;
        color: #918f8f;
    }
    .forget-pass a::after {
        content: "";
        position: absolute;
        height: 2px;
        width: 100%;
        border-radius: 100px;
        background: -webkit-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
        background: -o-linear-gradient(110deg, #f794a4 0%, #fdd6bd 100%);
        background: linear-gradient(-20deg, #f794a4 0%, #fdd6bd 100%);
        bottom: -4px;
        left: 0;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        opacity: 0;
        right: 0;
    }
    .forget-pass a:hover::after {
        opacity: 1;
    }
}

@media only screen and (max-width: 650px) {
    .login .login-form form input,
    .login .login-form form select {
        width: 286px;
    }

    .login .login-form form {
        justify-items: center;
    }

    .login .login-form form button[type="submit"] {
        width: 286px;
    }
}
