#dados_perfil > label, #sexo_ident > h2, .labelConfig, #informacoes > p {
  font-size: 1.3rem;
}

.inputCadastro {
  width: 300px;
  height: 25px;
  border-radius: 10px;
  outline: none;
  border: 1px solid black;
  padding: 5px;
}

#secao_cadastro {
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
  margin-top: 100px;
}

#dados_perfil {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color:  var(--cor-fundo-cartao);
  padding: 20px;
  margin-bottom: 100px;
  font-size: 30px;
  border-radius: 20px;
  box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.5);
}

#sexo_ident > h2 {
  margin: 5px 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

#informacoes {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#info_extra > h3 {
  margin-bottom: 20px;
  font-size: 30px;
}

#section-btn {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: 50px 0 20px 0;
}

#btn-edit, #btn-cancel, #btn-delete, #enviar, #cancel {
  width: 150px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid black;
  cursor: pointer;
  transition: all ease .2s;
}

#btn-edit:hover, #btn-cancel:hover, #btn-delete:hover, #enviar:hover, #cancel:hover {
  background-color: var(--cor-azul-claro);
  color: white;
  transform: scale(1.1);
}