
.container-banner {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 0;
    background-image: url("../../../src/img/banner.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.container-flexbox {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: stretch;
    flex-direction: row;
}

.container-span {
    flex-grow: 2;
}

.container-login {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    flex: 0 0 33%;
    padding: 20px 40px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, .9);
}

.container-logo {
    order: 1;
    flex-grow: 1;
}

.container-form {
    order: 2;
    flex-grow: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.container-footer {
    order: 3;
    flex-grow: 3;
}

.container-form .btn {
    width: 100%;
}

.input-field {
    margin-bottom: 0px;
}

@media only screen and (max-width: 600px) {

    .container-span {
        flex-grow: 0;
    }

    .container-login {
        padding: 16px;
        flex: 0 0 100%;
        background-color: rgba(255, 255, 255, 1);
    }

}
.open {
   display: block;
}

.tabs {
    background-color: transparent;
}
.tabs .indicator {
    background-color: #9F1C22;
}
.tabs .tab a:focus, .tabs .tab a:focus.active {
    background-color: transparent;
}
.tabs li a {
    color: #9F1C22 !important;
}

.margin-top {
    margin-top: 25px;
}