
/* 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: 450px;
    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;
}

/*------------------*/

/*------ESTILOS DE LOS DOS FORMULARIOS---------*/

.content .contenedor_formularios {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}
  /* Formulario estilizado */
.contenedor_dos_formularios {
    display: flex;
}
  .dos_formularios {
    background: #fff;
    padding: 10px;
      padding-right: 30px;
    border-radius: 8px;
      width: 100%;
    /*max-width: 400px;*/
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    margin: 10px;    
  }
.dos_formularios textarea {
    width: 100%;
    height: 100px;
}
  form h2 {
    margin-top: 0;
    color: #A82C2C;
  }
.form_inicio {
   
}
  label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
  }
  input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-top: 5px; 
  }
  button {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #A82C2C;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  button:hover {
    background-color: #BA6B00;
  }

/*ESTILOS DE LA HORA DROP*/

/*---------------------------------------------*/

 /* 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 */
  }