/*
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 : 19/04/2023, 09:17:01
    Author     : BRUNO
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.conteiner-registro{
    width: 100%;
    height: 100%;
    padding:10px; 
    display: block;
    list-style: none;
    background: linear-gradient(to bottom, #6898cf 0%, #ffffff 100%);
}
.conteiner-registro .conteiner{
    width: 80%;
    margin: 20px auto;
    border-radius: 5px;
}
.conteiner-registro .header{
    height: 150px;
    width: 100%;
    border: 1px #dcdcdc solid;
    border-radius: 5px;
    background-color: #fff;
    margin:0 0 5px 0;
    padding: 5px;

}
.conteiner-registro .header ul{
    list-style: none;
}
.conteiner-registro .header ul li{
    line-height: 45px;
}
.conteiner-registro .header ul li h3{
    border: 1px #dcdcdc solid;
    line-height: 45px;
    background-color: #F1F1F2;
    color: #696969;
    text-align: center;

}
.conteiner-registro .body{
    min-height: 300px;
    border: 1px #dcdcdc solid;
    border-radius: 5px;
    background-color: #fff;
    margin:0 0 5px 0;
    padding: 5px;
}
.conteiner-registro .body table{
    border: 1px #dcdcdc solid;
    border-collapse: collapse;
    width: 100%;
    margin: 50px 0;
}
.conteiner-registro .body table th{
    height: 40px;
    border-bottom: 3px #696969 solid;
}
.conteiner-registro .body table td{
    text-align: center;
    height: 45px;
}
.conteiner-registro .body > form button{
    border: none;
    width: 120px;
    height: 40px;
    border-radius: 3px;
    background-color: #006600;
    color: #fff;
    font-weight: 600;
    position: relative;
    float: right;
    margin: 10px 10px 20px 0;
}
.conteiner-registro .body table td button{
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 3px;
}
.conteiner-registro .body table td .b1{
    background-color: #0000cc;
}
.conteiner-registro .body table td .b2{
    background-color: #00cc00;  
}
.conteiner-registro .body table td .b3{
    background-color: #ff6600;
}
.conteiner-registro .body table td .b4{
    background-color: #ff0000;
}
.conteiner-registro .body table td button img{
    width: 25px
}
.conteiner-registro  .footer{
    height: 50px;
    width: 100%;
    border: 1px #dcdcdc solid;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 1px 1px 1px 2px rgba(230,231,232,.8);
}
