﻿input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid var(--laranja-escuro);
    -webkit-text-fill-color: var(--laranja-escuro);
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

.bgImgLogin {
    left: 3vw;
    bottom: 3vw;
    top: 3vw;
    width: calc(94vw - 500px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/imgLogin.jpg);
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 7vw;
}

    .bgImgLogin::before {
        position: absolute;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0) 100%);
        left: 0;
        content: "";
        bottom: 0;
        top: 0;
        width: 65%;
    }

    .bgImgLogin h1 {
        font-size: 55px;
        font-weight: 200;
        color: #fff;
        position: relative;
        margin-bottom: 30px;
    }

    .bgImgLogin .textPadrao {
        position: relative;
        color: #fff;
    }

        .bgImgLogin .textPadrao span {
            color: var(--laranja-padrao);
        }

.formLogin {
    position: absolute;
    right: 3vw;
    top: 5vh;
    height: 90vh;
    width: calc(500px - 3vw);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .formLogin .logoLogin {
        width: 100%;
        height: 55px;
        background: url(../images/logoErpSuiteHorizontal.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        margin-bottom: 40px;
    }

    .formLogin .txtComecar {
        font-size: 20px;
        text-align: center;
        color: #999;
    }

    .formLogin form {
        margin-top: 20px;
        width: 100%;
    }

        .formLogin form .bgInput {
            width: 100%;
            height: 30px;
            border-radius: 90px;
            border: 1px solid #e5e5e5;
            height: 50px;
            margin-bottom: 13px;
            display: flex;
            align-items: center;
            padding-left: 30px;
            padding-right: 20px;
            justify-content: space-between;
            transition: 0.4s;
        }

            .formLogin form .bgInput p {
                font-weight: 700;
                font-size: 16px;
                color: #666;
            }

            .formLogin form .bgInput .textBox {
                width: calc(100% - 70px);
                border: 0;
                height: 50px;
                font-size: 16px;
                color: var(--laranja-padrao);
                transition: 0.3s;
                font-weight: 700;
                background: transparent;
            }

                .formLogin form .bgInput .textBox:-webkit-autofill, .formLogin form .bgInput .textBox:-webkit-autofill:focus {
                    background: #fff !important;
                }

        .formLogin form .bgInputSelect {
            border-color: var(--laranja-escuro) !important;
        }

        .formLogin form .inputs {
            width: 100%;
            justify-content: space-between;
            align-items: center;
            display: flex;
            padding: 10px 30px;
            margin-bottom: 10px;
        }

            .formLogin form .inputs .check {
                color: #666;
                font-size: 16px;
                display: flex;
                align-items: center;
            }

                .formLogin form .inputs .check #scales {
                    font-size: 16px;
                    margin-right: 7px;
                }

        .formLogin form .btPadrao {
            width: 100%;
            height: 50px;
            padding: 0 15px;
            margin-bottom: 10px;
        }

        .formLogin form .btsRedesLogin {
            display: flex;
            justify-content: space-between;
        }

            .formLogin form .btsRedesLogin .btPadrao {
                width: calc(50% - 5px);
                font-size: 13px;
            }

                .formLogin form .btsRedesLogin .btPadrao svg {
                    width: 16px;
                    height: 16px;
                    margin-right: 10px;
                }

                .formLogin form .btsRedesLogin .btPadrao:first-child {
                    background: #334b91;
                    color: #666;
                    color: #fff;
                }

                    .formLogin form .btsRedesLogin .btPadrao:first-child svg {
                        fill: #fff;
                    }

                .formLogin form .btsRedesLogin .btPadrao:last-child {
                    border: 1px solid #e5e5e5;
                    background: #fff;
                    color: #666;
                }

        .formLogin form .or {
            display: flex;
            margin: 15px 0;
            justify-content: space-between;
        }

            .formLogin form .or:before {
                content: "";
                width: calc(50% - 30px);
                height: 15px;
                border-bottom: 1px solid #ccc;
            }

            .formLogin form .or:after {
                content: "";
                width: calc(50% - 30px);
                height: 15px;
                border-bottom: 1px solid #ccc;
            }

@media only screen and (max-width: 1023px) {
    .bgImgLogin {
        left: unset;
        top: unset;
        height: 200px;
        position: relative;
        bottom: unset;
        width: auto;
        margin: 5vw;
    }

        .bgImgLogin h1 {
            font-size: 25px;
            margin-bottom: 10px;
        }

        .bgImgLogin:before {
            width: 100%;
        }

    .formLogin {
        position: relative;
        height: unset;
        top: unset;
        width: auto;
        left: unset;
        right: unset;
        margin: 5vw;
        margin-bottom: 70px;
        display: block;
        overflow-y: hidden;
    }

        .formLogin .logoLogin {
            height: 46px;
        }

        .formLogin form .inputs {
            flex-direction: column;
        }

            .formLogin form .inputs .check {
                margin-bottom: 20px;
            }

        .formLogin form .btsRedesLogin {
            flex-direction: column;
        }

            .formLogin form .btsRedesLogin .btPadrao {
                width: 100%;
            }
}

/*# sourceMappingURL=login.css.map */
