#cadastro,
#editar {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  /*invisível*/
  align-items: center;
  justify-content: center;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.janela {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  padding: 10px 5px;
  border: 1px solid #1b5ea9;
  background-color: whitesmoke;
  border-radius: 5px;
  position: relative;
}

.div-fechar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 5px 5px 5px 10px;
  background-color: white;
  border-bottom: 1px solid #1b5ea9;
}

.div-fechar h2{
  color: #1b5ea9;
}

.fechar {
  cursor: pointer;
  padding: 5px;
  float: left;
  height: 100%;
  width: 50px;
  background-color: red;
  color: white;
  border: 1px solid red;
}

.fechar:hover {
  border: 1px solid white;
}

.btn-enviar:hover {
  border: 1px solid #1b5ea9;
}

.form-cadastro,
.form-editar {
  display: flex;
  flex-wrap: wrap;
}
label{
  width: 100px;
}

.div-input {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 5px;
  background-color: white;
}

.subdiv-input {
  width: 50%;
  margin-bottom: 5px;
}

.subdiv-input label {
  display: inline-block;
  color: black;
  width: 100px;
}

.div-input input {
  padding: 10px;
}

.btn-enviar {
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
  font-size: 16pt;
  background-color: limegreen;
  border: 1px solid limegreen;
  color: white;
}