/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 24/02/2023, 16:54:13
    Author     : BRUNO
*/

*{
    margin: 0;
    padding: 0;
}
section form{
    background-color: #fff;
    width: 300px;
    margin: 20px auto;
    padding: 20px;
}
form input{
    height: 45px;
    width: 100%;
    margin: 10px 0;
    border-radius: 5px;
}
.bt{
    background-color: #00cc00;
    border: none;
    color: #fff;
    font-weight: 600;
    
}
#tabela-produtos{
    width: 95%;
    border: 1px #dcdcdc solid;
    background-color: #fff;
    padding: 10px;
    margin: 20px auto;
}
#tabela-produtos th{
    background-color: #0099cc;
    color: #fff;
    height: 45px;
}
#tabela-produtos td{
    height: 45px;
    text-align: center;
}