:root {
    --bg-default-primary: #0703c0;
    --bg-default-secondary: #5f5ff7;
    --bg-default-complement: #1f5099;
    --bg-default-extraordy: #a191f8;
    --default-font-span: #fff;
    --default-font-ahref: #000000;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 7px;
    background: rgba(64, 65, 143, 0.8);
}

* {
    font-family: 'RobotoMono', monospace;
}

body {
    margin: 0px;
}

.app {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: grid;
    height: 100vh;
    grid-template-rows: 40px 1fr 40px;
    grid-template-columns: 1fr;
    grid-template-areas: "header" "conteudo" "footer";
}

.is-enabled {
    border: none;
    background-color: #fff;
    width: 60px;
    text-align: right;
}

.is-disabled {
    background-color: #e9ecef;
    border: none;
    width: 60px;
    text-align: right;
}

.header {
    grid-area: header;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: linear-gradient(to left, var(--bg-default-primary), var(--bg-default-secondary));
    padding: 0px;
    margin: 0px;
}

.header ul {
    list-style: none;
    margin-top: 1em;
    padding: 10px 5px;
}

.header ul li {
    display: inline-block;
    padding: 5px 7px;
    text-align: right;
    margin-right: 30px;
}

.header a {
    text-decoration: none;
    color: #fff;
}

.conteudo {
    grid-area: conteudo;
    background-color: #f5f1f1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer {
    grid-area: footer;
    background: linear-gradient(to bottom, var(--bg-default-primary), var(--bg-default-secondary));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer>span {
    padding: 15px;
    font-size: 1.1em;
    font-weight: 300;
    color: var(--default-font-span);
}

.bg-gradient-primary {
    background: linear-gradient(to left, #d4d4f5, #02048d);
    color: #fff;
}

.bg-gradient-secondary {
    background: linear-gradient(to left, #d5d5d6, #575757);
    color: #fff;
}

.bg-gradient-info {
    background: linear-gradient(to left, #ade0f5, #0376fa);
    color: #fff;
}

.bg-gradient-success {
    background: linear-gradient(to left, #abf7a9, #015308);
    color: #fff;
}

.bg-gradient-warning {
    background: linear-gradient(to left, #eedeaa, #fa8f03);
    color: #fff;
}

.bg-gradient-danger {
    background: linear-gradient(to left, #fefeff, #f80404);
    color: #fff;
}

.sub-titulo-modal {
    position: fixed;
    left: 25px;
    font-size: 1.5em;
}

.titulo-modal {
    font-size: 1.8em;
}

.total-modal {
    font-size: 1.5em;
}

.box_container {
    background-color: #fff;
    border-radius: 10px;
    margin-top: 50px;
    padding: 10px;
    width: 50%;
    flex-direction: column;
    box-shadow: 2px 0 10px 0 rgb(0, 0, 0, 0.12), 2px 0 15px 0 rgb(0, 0, 0, 0.5);
}

.img-login {
    margin: 15px 120px;
    height: 50%;
    width: 50%;
}

.texto-login {
    font-size: 30px;
}
.tab-esquerda {
    text-align: left;
}

.tab-centro {
    text-align: center;
}

.tab-direita {
    text-align: right;
}

@media(max-width: 768px) {
    .header ul li {
        font-size: 0.8em;
        margin-right: 0px;
        padding: 5px;
    }
    .footer>span {
        font-size: 0.7em;
    }
    .box_container {
        width: 90%;
        margin-top: 20px;
    }
    .img-login {
        margin: 10px 35px;
        width: 60%;
    }
    .texto-login {
        font-size: 1em;
    }
    .btn-login {
        font-size: 1.3em;
    }
}