/*#######################################################################################

/*
ESTILOS DAS MENSAGENS
*/

.cor1-logo {
    background-color: #810813;
}

.cor2-logo {
    background-color: #ef2f32;
}

.cor3-logo {
    background-color: #e07d22;
}

.cor4-logo {
    background-color: #f0e603;
}

.cor5-logo {
    background-color: #ffffff;
}


.logo-sm {
    width: 150px;
    max-width: 100%;
    aspect-ratio: 4/3;

    /* object-fit: contain; */
}

.logo-lg {
    width: 90%;
    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
*/

.btn-menu {
    border: 2px solid rgb(0, 0, 0);
    border-radius: 5px;
    font-size: 10pt;
    background-color: #ffffff;
    color: #000000;
    width: 150px;
    height: 30px;

}


.btn-form {
    border: 2px solid rgb(0, 0, 0);
    border-radius: 5px;
    font-size: 15pt;
    background-color: #810813;
    color: #ffffff;
    width: 130px;
    height: 50px;

}


.btn-login {
    height: 50px;
}


.borda-branca {
    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%);
    background-color: #ffffff;
    width: 80%;
    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: #c6cfd6;
    /* 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);
}



.img-form {
    display: none;
}


.img-sm {
    height: 30px;
    cursor: pointer;
}






