/*#######################################################################################

/*
ESTILOS DAS MENSAGENS
*/

.cor1-logo {
    background-color: #3dd34d;
}

.cor2-logo {
    background-color: #eb4f39;
}

.cor3-logo {
    background-color: #e0fa1f;
}

.cor4-logo {
    background-color: #5c33cf;
}

.cor5-logo {
    background-color: #c6cfd6;
}


.logo {
    width: 150px;
    max-width: 100%;
    aspect-ratio: 4/3;

    /* object-fit: contain; */
}


.caixa-notificacao {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 90%;
    background: #ffffff;
    border: 1px solid gray;
    border-radius: 1px;
    box-shadow: 10px 10px 10px gray;
    animation: animate;
    animation-duration: 500ms;
    text-align: center;
    padding: 12px;
    margin: 0 5px 0 5px;
}



.img-notificacao {
    width: 10px;
    height: 10px;
    margin: auto;
}

.btn-notificacao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 20px;
    height: 20px;
}


/*
ESTILO GLOBAL
*/



.cabecalho {
    background-color: #013e2b;
}

.rodape {
    background-color: #013e2b;
}


.btn-global {

    border: 2px solid rgb(0, 0, 0);
    border-radius: 5px;
    font-size: 15pt;
    background-color: #555555;
    color: #ffffff;
    width: 100%;

}


.btn-cabecalho {
    border: 2px solid rgb(255, 255, 255);
    border-radius: 5px;
    font-size: 15pt;
    background-color: #555555;
    color: #ffffff;
    width: 50px;
    height: 50px;

}


.borda-banca {
    border: 2px solid rgb(255, 255, 255);
}

.borda-preta {
    border: 3px solid rgb(0, 0, 0);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d1d4e5;
    /* background-image: linear-gradient(to bottom, #d1d4e5, #291e62);
    background-attachment: fixed; */
}

.container {
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.centralizar-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.centralizar-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.esquerda {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.direita {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
}

.form {
    position: fixed;
    padding: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background-color: #013e2b;
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgb(0, 0, 0);
    animation: animate;
    animation-duration: 500ms;
}

@keyframes animate {
    from {
        opacity: 1;
    }
}

.fundo {
    position: fixed;
    top: 0%;
    width: 100%;
    height: 100%;
    background: #d1d4e5;
    /* background-image: linear-gradient(to bottom, #fefefe, #33681d); */
}



.load {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(252, 252, 252, 0.671);
}