/*#######################################################################################

/*
ESTILOS DAS MENSAGENS
*/

.cores {
    background: #b03b58;
}

.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;
}


/* @keyframes animate {
    from {
        opacity: 1;
    }
    from {
        opacity: 0;
    }
} */

.texto-notificacao {
    color: white;
    font-weight: bold;
}

.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 GERAL
*/

.amarelo {
    background-color: #ffc000;
    border: 2px solid black;
}

.preto {
    background-color: #000000;
    border: 2px solid rgb(255, 255, 255);
}

#div-lista-minhas-turmas {
    height: 150px;
}

.borda {
    border: 2px solid rgb(255, 255, 255);
}

.borda-dark {
    border: 2px solid rgb(0, 0, 0);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffc000;
    /* background-image: linear-gradient(to bottom, #ffc000, #000000); */
    background-attachment: fixed;
}

.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: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 10px 10px 10px gray;
    animation: animate;
    animation-duration: 500ms;
}

@keyframes animate {
    from {
        opacity: 1;
    }
}

.fundo {
    position: fixed;
    top: 0%;
    width: 100%;
    height: 100%;
    background-color: #ffc000;
    /* background-image: linear-gradient(to bottom, #ffc000, #000000); */
}

a {
    text-decoration: none;
    color: black;
}

.col-nome-resumo {
    width: 500px;
}


/*#######################################################################################



/*
ESTILOS CABEÇALHO
*/

.cabecalho {
    margin-top: 50px;
}

.div-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.logo {
    width: 200px;
    height: 130px;
    /* border: 2px solid white;
    border-radius: 5px; */
}

.item-menu:hover {
    background: #000000;
    color: white;
    border-radius: 5px;
    transition-duration: 0.3s;
    text-decoration: none
}


/*################################



/*     
ESTILO DO DEFAULT
*/

.login {
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px auto auto auto; */
    border-radius: 5px;
    box-shadow: rgb(0, 0, 0) 5px 5px 10px;
    background: rgb(255, 255, 255);
}

.btn-padrao {
    width: 100%;
    height: 50px;
    background-color: #000000;
    border-radius: 5px;
    color: #ffffff
}

.btn-padrao:hover {
    background-color: #ffffff;
    color: black;
    border-radius: 5px;
    border: 2px solid black;
    transition-duration: 0.3s;
}

.lbl-visualizar {
    float: right;
}

#form-redefinir-senha {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    border: 1px solid gray;
    border-radius: 10px;
    box-shadow: 10px 10px 10px gray;
    animation: animate;
    animation-duration: 500ms;
}

@keyframes animate {
    from {
        opacity: 1;
    }
}


.load {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(252, 252, 252, 0.671);
}