/* Login */
.login-img {
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.login-formulario {
    grid-area: centerLeft;
    flex-direction: column;
}

.formulario {
    width: 350px;
}

.formulario img {
    width: 250px;
}

hr {
    margin: 26px 0 32px 0;
    border: 1px solid #E0E5F2;
}

input[type="submit"] {
    border: 0;
    border-radius: 16px;
    background-color: #EF6E40;
    font-size: 14px;
    font-weight: bold;
    color: white;
    padding: 15px 0;
    width: 100%;
    margin-bottom: 22px;
    line-height: 10px;
    transition: all .3s;
    cursor: pointer;
}

input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:visited,
input[type="submit"]:hover {
    background-color: #3B4B91;
}

.input-class {
    margin-bottom: 20px;
}

span.obrigatorio {
    color: #EA4335;
}

label {
    font-size: 14px;
    color: #2B3674;
    font-weight: bold;
}

input {
    border-radius: 16px;
    border: 1px solid #E0E5F2;
    height: 40px;
    padding: 0 24px 0 24px;
    background: transparent;
    color: #A3AED0;
    font-size: 14px;
    width: -webkit-fill-available;
    margin-top: 10px;
    outline: none;
}

::placeholder {
    color: #A3AED0;
}

.forgot-remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*Checkbox*/
.control {
    display: block;
    position: relative;
    padding-left: 23px;
    margin-bottom: 5px;
    padding-top: 3px;
    cursor: pointer;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background: #fff;
    border: 1px solid #E0E5F2;
    border-radius: 2px;
}

.control:hover input~.control_indicator,
.control input:focus~.control_indicator {
    background: #fff;
}

.control input:checked~.control_indicator {
    background: #3B4B91;
}

.control:hover input:not([disabled]):checked~.control_indicator,
.control input:checked:focus~.control_indicator {
    background: #3B4B91;
}

.control input:disabled~.control_indicator {
    background: #fff;
    opacity: 0.6;
    pointer-events: none;
}

.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.control input:checked~.control_indicator:after {
    display: block;
}

.control-checkbox .control_indicator:after {
    left: 6px;
    top: 1px;
    width: 3px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.control-checkbox input:disabled~.control_indicator:after {
    border-color: #7b7b7b;
}

.copyright {
    font-size: 14px;
    color: #A3AED0;
    padding-bottom: 10px;
    position: absolute;
    bottom: 0;
}

@media only screen and (max-width: 768px) {
    .login-formulario {
        padding: 0 20px;
    }
}