/* Estilos para el formulario */
.formulario {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 96%;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
  }
  
  .botones{
    width: 100px;
    height: 40px;
    text-align: center;
    padding: 0;
  }
  /* Estilos para la columna única */
  .columna-unico {
    width: 100%;
    box-sizing: border-box;
    padding-right: 0;
    padding-left: 0;
  }
  
  /* Estilos para los labels */
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }
  
  /* Estilos para los inputs y selects */
  input[type="text"],
  select {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    background-color: transparent;
    font-size: 16px;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
  }
  
  input[type="text"]:focus,
  select:focus {
    outline: none;
    border-color: #4caf50;
  }
  
  /* Estilos para los mensajes de error */
  .error-message {
    color: red;
    font-size: 14px;
    margin-top: 4px;
  }
  
  /* Estilos para el botón */
  button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: rgb(71, 127, 75);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color:  rgb(90, 159, 95);
  }
  
  /* Estilos para el contenedor principal */
  .contenedor {
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 10%;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    background-color: #ffffff;
    position: relative;
    z-index: 1;
  }
  
  /* Estilos para el contenedor del formulario */
  .contenedor-dos {
    margin-top: 30px;
    padding: 0.9375rem 20px;
    position: relative;
  }
  
  /* Estilos para el título sobremontado */
  .sobremontado {
    position: relative;
    width: 96%;
    top: -20px;
    left: 2%;
    background-color: #477f4b;
    color: #fff;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: -50px;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  /* Estilos para el icono de instituciones */
  .icono-instituciones {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    font-size: 20px;
  }
  
  .volver{
    position: absolute;
    top: 25%;
    right: 10px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: white;
    display: flex;
    color: rgb(71, 127, 75);
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 32px;
    height: 32px;
    border: none;
    outline: none;
    cursor: pointer;
  
  }
  
  .save-button {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
  }
  

  .input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
  }