body{
    background-color: rgb(172, 79, 79);
    margin: 0px;
}


#navbar{ 
    background-color: rgb(94, 20, 17);
    border-radius: 0px 0px 20px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    margin: 0px;
    padding: 32px;
}
#navbar h3{
    margin:0px 20px;
}


#container{
    padding-top: 20px;
    overflow-y: auto;
    width: 500px;
    height: 600px;
    position: absolute;
    top:55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(rgb(94, 20, 17),rgb(194, 58, 53));
    border: 1px solid black;
    color: white;
    border-radius: 15px 0px 0px 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 23px;
    box-shadow: 7px 7px rgba(59, 59, 59, 0.384);
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.575);
}
#container::-webkit-scrollbar{
    background-color: rgb(63, 63, 63);
    width: 8px;
}
#container::-webkit-scrollbar-thumb{
    background-color: rgb(231, 231, 231);
    border-radius: 2px;
    transition: background-color 0.3s, transform 0.2s;
}
#container::-webkit-scrollbar-thumb:hover{
    background-color: rgb(150, 31, 31);
}

.erro{
    color: rgb(255, 252, 65);
    font-size: 15px;
}

fieldset{
    border: none;
}

.input{
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.3);
    border: 1px solid;
    width: 100%;
    background-color: white;
    color: black;
    border-radius: 10px;
    padding: 16px;
    font-weight: 600;
}
.label{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
}
#botaostick {
    position: sticky;
    bottom: 0;
    margin: 0px;
    margin-top: 16px;
    padding: 33px 10px;
    background: rgba(255, 255, 255, 0.616);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}
#botaostick::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0px 0px 0px 10px;
    background: rgba(185, 45, 45, 0.342);
    filter: blurrgba(168, 113, 113, 0.342);
    opacity: 0.6;
    z-index: -1;
}
#enviar{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    padding: 6px 80px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: 2px solid rgba(0, 0, 0, 0.589);
    border-radius: 6px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.274);
    transition: all 0.1s ease;
    text-align: center;
}
#enviar:hover{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -42%);
    cursor: pointer;
    background-color: rgb(112, 112, 112);
    color: rgb(255, 255, 255);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.274);
    transition: all 0.1s ease;
}
#enviar:active{
    background-color: rgb(36, 36, 36);
}

#imagemTabela{
    width: 400px;
}

#divTabela{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}