﻿.banner {
    width: 50vw;
    height: 100%;
    background: rgb(0, 0, 92);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

    .banner .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3); /* filtro escuro */
    }

.container_login {
    width: 50vw !important;
    padding: 0% 5% 0% 5%;
}

/* ajustando logo da empresa */
.logo-empresa {
    width: 400px;
    z-index: 10;
}

.banner {
    width: 50vw;
}

.divider_sigo {
    width: 90%;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    font-size: 15px;
    font-weight: bold;
    color: #6b6b6b;
}

    .divider_sigo::before,
    .divider_sigo::after {
        content: "";
        flex: 1;
        border-bottom: 2px solid #d6d6d6;
    }

    .divider_sigo::before {
        margin-right: 10px;
    }

    .divider_sigo::after {
        margin-left: 10px;
    }

@media (max-width: 800px) {
    .banner {
        width: 100% !important;
        height: 50%;
    }

    .container_login {
        width: 100% !important;
        height: 50%;
    }

    .container_tela {
        display: block !important;
    }

    .logo-empresa {
        width: 80% !important;
    }
}