/*
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 : 23/03/2023, 11:49:08
    Author     : BRUNO
*/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.conteiner-registro{
    width:100%;
    height:100%;
    padding:5px;
    box-sizing:border-box;
    
}
#menu-registro{
    width: 80%;
    background-color: #fff;
    box-sizing: border-box;
    padding: 5px;
    
    margin: 20px auto;
}
#menu-registro h1{
    width: 100%;
    line-height: 65px;
    text-align: center;
    color: #000;
    background-color: #dcdcdc;
}
#menu-registro ul{
    width: 100%;
    padding: 0;
    
}
  #menu-registro ul li{
    width: calc(25% - 3px);
    display: inline-flex;
    text-align:center;
    
}
#menu-registro .bt{
    width: 100%;
    height: 45px;
    margin: 5px;
    box-sizing: border-box;
    border-radius: 3px;
    border: none;
    background-color: #007bff;
    color: #fff;
   
}
#menu-registro .bt:hover{
    background-color: #0000cc;
}
@media only screen and (max-width: 800px){
   #menu-registro ul li, #menu-registro{
    width: 100%;
    box-sizing: border-box;
    }
    #menu-registro .bt{
    width: 100%;
    margin: 10px 0 0;
    font-size: 17px;

}
}