
/* contenedores */

.form-section {
  display: none;
}
.form-section.active {
  display: block;
}

.ocultar{

  display: none;

}

.row{

  margin-left: 0;
  margin-right: 0;

}

/* Estilos para el background */

.modal-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Estilo del cuadro modal */
.modal-content {
  background-color: white;
  width: 600px;
  height: 500px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
};