﻿.grid-autenticacao {
    display: grid;
    grid-gap: 4px;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}
.esconde-na-tela-media {
    display: none;
}

.alinhamento-direita-tela-media {
    text-align: right;
}

.alinhamento-esquerda-tela-media {
    text-align: left;
}

.alinhamento-centro-tela-media {
    text-align: center;
}

.largura-80-centralizado-md {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.largura-70-centralizado-md {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.largura-50-centralizado-md {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.largura-100-md {
    width: 100%;
}

.fonte-titulo {
    font-size: 5vw;
}
.fonte-subtitulo {
    font-size: 3vw;
}

.logo {
    width: 150px;
}

.fonte-destaque {
    font-size: 21px;
}
.foto-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foto {
    width: 60px;
    height: 60px;
    border: 1px solid lightgray;
    border-radius: 4px;
}

.foto-nome {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.container-aguarde {
    min-width: 150px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /*background: #BB0B0B;*/
    border-radius: 4px;
    color: #999;
    float: right;
}

.spinner {
    width: 15px;
    height: 15px;
    border: 3px solid #999;
    color: #999;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.7s linear infinite;
}

@keyframes spinner {
    from {
    }

    to {
        transform: rotate(360deg);
    }
}

.slanted {
    background-image: url('../img/slanted-gradient.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
