
/* Contenido principal */
  .content {
    margin-left: 250px;
    padding: 40px 20px;  
  }
.content .contenedor_formularios {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}
  /* Formulario estilizado */
  form {
    background: #fff;
    padding: 10px;
      padding-right: 30px;
    border-radius: 8px;
      width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    margin: 10px;  
      
  }
  form h2 {
    margin-top: 0;
    color: #A82C2C;
  }

form textarea {
    font-family: Nunito, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #858796;
    width: 100%;
    height: 850px;
    resize: none; /*evita que el usuario pueda manipular el tamaño del textarea*/
    border: none;
    outline: none; /*para quitar los vordes negros al hacer clic dentro del cuadro*/
}

form img {
    width: 90%;
    height: 400px;
}

/*------------------*/

 /* Estilo para el botón */
  #btnArriba {
    position: fixed; /* Usa fixed para que permanezca en la pantalla */
    bottom: 20px;    /* distancia del margen inferior */
    right: 20px;     /* distancia del margen derecho */
    padding: 10px 15px;
    background-color: #007bff; /* color de fondo */
    color: white; /* color del texto */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    z-index: 1000; /* asegura que esté sobre otros elementos */
  }