body {
    margin: 0;
}

.orienteme-login__container {
    display: flex;
    flex-direction: row;
}

    .orienteme-login__container aside {
        background-image: url(/imagens/woman-smiling.jpg);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        flex: 3;
        height: 99.9vh;
        position: relative;
    }

@media (max-width: 800px) {
    .orienteme-login__container aside {
        display: none;
    }
}

.oriteneme-login__mask {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.8;
    position: absolute;
    z-index: 1;
}

.orienteme-login__info {
    position: relative;
    z-index: 2;
    height: 100%;
}

.orienteme-login__logo {
    padding: 30px;
}

.orienteme-login__message {
    margin: 0 auto;
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100% - 115px);
}

.orienteme-login__container main {
    flex: 6;
}

.orienteme-login__group {
    padding-left: 140px;
    height: calc(100% - 106px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .orienteme-login__group {
        padding-left: 50px;
    }
}

@media (max-width: 800px) {
    .orienteme-login__group {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.orienteme-login__container nav {
    margin-top: 40px;
    margin-right: 30px;
    text-align: right;
}

    .orienteme-login__container nav > a > img {
        right: 190px;
        top: 45px;
        position: absolute;
    }

.orienteme-login__content {
    width: 600px;
    margin-top: 72px;
    height: calc(100% - 137px);
}

@media (max-width: 800px) {
    .orienteme-login__content {
        width: 100%;
    }
}

.orienteme-login__container header {
    margin-bottom: 40px;
}

.orienteme-login__form-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.orienteme-login__container form > div {
    margin-bottom: 20px;
}

.orienteme-login__label {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 7px;
    padding-top: 20px;
}

.orienteme-login__container input[type="text"],
.orienteme-login__container input[type="email"],
.orienteme-login__container input[type="password"] {
    background-color: #F3F6F9;
    /*border: none;*/
    border-radius: 11px;
    width: calc(100% - 30px);
    height: 60px;
    padding: 0 15px;
    outline: none;
}

.orienteme-login__form-action {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .orienteme-login__form-action > div {
        display: flex;
        flex-direction: row;
        padding-top: 10px;
    }

        .orienteme-login__form-action > div > div {
            margin-left: 10px;
            padding-top: 5px;
        }

.orienteme-login__container input[type="button"] {
    border: none;
    padding: 14px 27px;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
}

.orienteme-login__container footer {
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.orienteme-login__copy {
    margin-right: 8px;
}

/* The switch - the box around the slider */
.orienteme-login__switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .orienteme-login__switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.orienteme-login__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
}

    .orienteme-login__slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

.orienteme-login__container input:checked + .orienteme-login__slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.orienteme-login__slider.round {
    border-radius: 34px;
}

    .orienteme-login__slider.round:before {
        border-radius: 50%;
    }
