
body{
    font-family: sans-serif;
    overflow-x: hidden;
    place-items: center;
    background: #234f88;
    background-image: url(imgs/back.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#ct_1{
    width: 100%;
    height: 100%;
}

.next-page-animation{
    animation: 3s next-page;
}

@keyframes next-page{
    0%{right: 0%;}
    25%{right: -20%;}
    50%{right: 110%;}
    100%{right: 0%;}
}
.title{
    max-width: 100%;
    pointer-events: none;
}

nav{
    display: flex;
    justify-content: space-around;
    width: 50%;
    max-width: 800px;
    flex-wrap: wrap;
}


header nav{
    width: 100%;
    background: #1F4679;
    text-align: center;
    place-items: center;
    overflow: auto;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    color:white;
    max-height: 80px;
    z-index: 10;
    overflow-y: hidden;
    max-width: 100%;
}
nav p{
    margin: 2%;
    transition: 0.4s;
}
nav p:hover{
    cursor: pointer;
    scale: 1.05;
    transform: translateY(-5px);
    border-bottom: 1px solid #1F4679;
}
nav h3{
    margin: 2%;
    transition: 0.4s;
}
nav h3:hover{
    cursor: pointer;
    scale: 1.05;
    transform: translateY(-5px);
    border-bottom: 1px solid #1F4679;
}
main{
    width: 100%;
}
main section{
    display: none;
    overflow: auto;
    height: 100%;
    place-content: center;
    flex-wrap: wrap;
    place-items: center;
}

#login_page{
    place-items: center;
}

div{
    margin: 1%;
    background: white;
    max-width: 700px;
    height: auto;
    box-shadow: 0 2px 8px black;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: 4px solid #1F4679;
    padding: 13%;
    text-align: center;
    color: #1F4679;
}
button{
    width: 180px;
    height: 40px;
    color: white;
    background: #9DB7D8;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 5px grey;
    transition: 0.4s;
    border: 1px solid #C8D7EB;
}
.next-animation{
    animation: 2s next;
}
@keyframes next{
    0%{opacity: 100%;}
    50%{opacity: 0%;}
    100%{opacity: 100%;}
}




#login_page button{
    width: 70%;
    margin-top: 1%;
}


button:hover{
    scale: 1.05;
    cursor: pointer;
    transform: translateY(-5px);
}
input{
    width: 70%;
    height: 50px;
    margin: 1%;
    border-radius: 10px;
    border: 1px solid #C8D7EB;
    background: #f0f5fc;
    place-self: center;
}

select{
    width: 70%;
    height: 50px;
    margin: 1%;
    border-radius: 10px;
    border: 1px solid #C8D7EB;
    background: #f0f5fc;
}


footer{
    color: white;
    background: #1F4679;
    width: 100%;
    text-align: center;
    place-items: center;
    place-content: center;
    display: flex;
    flex-direction: column;
    padding: 2%;
}
.wellcome{
    display: block;
    text-align: center;
    place-items: center;
    color:#1F4679;
    background: transparent;
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: 0 0 0 ;
}

.wellcome button{
    width: 50%;
    height: 80px;
    margin: 1%;
    font-size: 22px;
}

.wellcome h3{
    width: 100%;
    margin-left: 10%;
}

#feedback_window{
    position: fixed;
    width: 20%;
    height: 20%;
    background: white;
    z-index: 10;
    bottom: 0%;
    border-top-right-radius: 15px;
    border-top: 2px solid rgba(0, 255, 0, 0.329);
    border-right: 2px solid rgba(0, 255, 0, 0.329);
    border-style:groove;
    box-shadow: 2px 2px 5px grey;
    text-align: center;
    place-content: center;
    display: none;
    color: #1F4679;
}

.alert-in{
    animation: 1s alert-in forwards;
}

@keyframes alert-in{
    from{
        left: -100%;
    }
    to{
        left: 0%;
    }
}
#feedback_window button{
    height: 20px;
    box-shadow: 0 0 0;
    border-radius:0;
    width: 40px;
    position: absolute;
    left: 0;
    top: 0;
    color: #1F4679;
}
.desempenho{
    display: flex;
    flex-wrap: wrap;
}
.desempenho nav{
    box-shadow: 0 2px 8px grey;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    z-index: 10;
}
.desempenho section{
    display: flex;
    width: 100%;
    text-align: center;
    border-top-right-radius: 8px;
}
.desempenho section img{
    width: 150px;
    height: 150px;
    border-top-left-radius: 8px;
}
.status_page{
    display: block;
    width: 100%;
    margin-top: 5%;
    border-radius: 8px;
    background: transparent;
    box-shadow: 0 2px 8px grey;
    justify-content: space-around;
}
.notas{
    display: block;
    max-width: 90%;
    border: 2px solid #1F4679;
    margin: 1%;
    border-radius: 8px;
    text-align: right;
}
.notas section{
    width: 100%;
    justify-content: space-between;
    text-align: left;
    font-size: 35px;
}
.notas h3{
    width: 100%;
    text-align: left;
}
