*{
    box-sizing: border-box;
    
}

#grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    margin-left: 25%;
    margin-top: 10%;
    width: 8%;
    height: 50vh;
    gap: 20px;
    text-align: center;
    align-items: center;
}
#grid2{
   
    width: 30%;
    height: 500px;
    padding-top: 1px;
    border-radius: 25px;
    margin-left: 30%;
    margin-top: 7%;
    border: solid 1px crimson;
    box-shadow: black 0px 0px 30px;
}
#nome{
    border-radius: 17px;
    opacity: 0.5;
    height: 30px;
}
#endereco{
    border-radius: 17px;
    opacity: 0.5;
    height: 30px;
}
#cpf{
    border-radius: 17px;
    opacity: 0.5;
    height: 30px;
}
#cnpj{
    border-radius: 17px;
    opacity: 0.5;
    height: 30px;
}
#cep{
    border-radius: 17px;
    opacity: 0.5;
    height: 30px;
}
#telefone{
    border-radius: 17px;
    opacity: 0.5;
    height: 30px;
}
#codigo{
    border-radius: 17px;
    opacity: 0.5;
    height: 30px;
}
.label{
    font-family: Arial, Helvetica, sans-serif;
}
#botao{
    height: 50px;
    font-size: 25px;
    border-radius: 20px;
    border: solid 2px crimson;
    background-color: white;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    justify-content: center;
    grid-column: 1/3;
    transition: 0.5s;
}
#botao:hover{
    background-color: crimson;
    border: solid 2px black;
    color: white;
}
.modal {
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}


.modal-content {
  background-color: #fefefe;
  margin-left: 700px;
  margin-top: 400px;
  padding: 20px;
  border: 1px solid #888;
  width: 20%; 
  border: solid 2px crimson;
  text-align: center;
  border-radius: 20px;
  font-family: Arial, Helvetica, sans-serif;
  height: 130px;
  font-size: 30px;
}


.fechar {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  left: 1042px;
  top: 403px;
  background-color: white;
  border-radius: 20px;
  width: 40px;
  border: none;

}
.fechar:hover,
.fechar:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

