/*Diseño global de los botones*/
.cuerpoLineaNombre button {
  border: 0;
  padding: 5px;
  width: 100% !important;
}

/*Diseño de las imagenes, el boton azul claro y el texto*/
.cuerpoLineaNombre .descargar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/*Diseño del boton DESCARGAR*/
.cuerpoLineaNombre .descargar button:hover {
  background-color: #008cff;
  color: whitesmoke;
  height: 2.3rem;
  border-radius: 30px;
  width: 80% !important;
  font-size: 25px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*Diseño de los botones*/
.cuerpoLineaNombre .opciones {
  display: flex;
  flex-direction: row;
  gap: 5rem;
  align-items: center;
}

/*Estilos globales para los botones de back y send*/
.cuerpoLineaNombre .opciones button {
  background-color: #008cff;
  color: whitesmoke;
  height: 2.3rem;
  border-radius: 30px;
  width: 80% !important;
  font-size: 25px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*Tamaño de la imagen del robot*/
.cuerpoLineaNombre .robot {
  height: 140px;
  margin-bottom: -1vh;
}

/*Tamaño de la imagen del logo*/
.cuerpoLineaNombre .logo {
  width: 250px;
  height: auto;
  margin-bottom: -6vh;
}



/*Diseño del input*/
.cuerpoLineaNombre input {
  border-radius: 12px;
  border: 1px solid #000f4e;
  width: 77%;
  height: 25px;
  padding-left: 15px;
  font-size: 17px;
}


/*Texto*/
.cuerpoLineaNombre p {
  font-size: 18px;
  margin-bottom: 0px;
  margin-top: 7px;
  color: #000f4e;
}


/*Div de datos a ingresar RPU y su titulo*/
.cuerpoLineaNombre .datosIngresar {
  width: 84%;
  margin-left: 18%;
}


.cuerpoLineaNombre h4 {
  color: red;
  margin-bottom: -1vh;
}

.cuerpoLineaNombre #subCuerpoLineaNombre {
  position: relative;
  /* Asegúrate de que el contenedor padre tenga una posición relativa */
  min-height: 100vh;
}

.cuerpoLineaNombre #datosErroneos {
  position: fixed;
  /* Posiciona el div de manera fija para que esté siempre en el centro de la pantalla */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  max-width: 350px;
  background-color: rgb(199, 199, 199);
  z-index: 10;
  padding: 3px;
  padding-bottom: 15px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  text-align: center;
  font-size: 20px;
  opacity: .9;
}

.cuerpoLineaNombre #exito {
  position: fixed;
  /* Posiciona el div de manera fija para que esté siempre en el centro de la pantalla */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  max-width: 350px;
  z-index: 10;
  padding: 3px;
  padding-bottom: 15px !important;
  text-align: center;
  opacity: .9;
}

.cuerpoLineaNombre .title {
  background-color: #008cff;
  color: whitesmoke;
  height: 2.3rem;
  border-radius: 30px;
  width: 80% !important;
  font-size: 25px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4%;
}

.subCuerpoLineaNombre {
  width: 450px;
  
}

#texto_bot5 {
  position: absolute;
  right: 50px;
  top: 22px;
  font-size: 27px;
  margin-top: 0;
  margin-bottom: 0;
  color: rgb(255, 255, 255);
}

/* Teléfonos móviles pequeños */
@media (max-width: 320px) {

  #texto_bot5 {
    position: absolute;
    right: 50px;
    top: 18px;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
    color: rgb(255, 255, 255);
  }

  .subCuerpoLineaNombre {
    width: 362px;
    
  }

  .cuerpoLineaNombre .opciones {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }

}

/*Teléfonos móviles medianos*/
@media (min-width: 321px) and (max-width: 375px) {

  #texto_bot5 {
    position: absolute;
    right: 50px;
    top: 18px;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
    color: rgb(255, 255, 255);
  }

  .subCuerpoLineaNombre {
    width: 362px;
    
  }

  

}

/*Teléfonos móviles grnandes*/
@media (min-width: 376px) and (max-width: 425px) {

  #texto_bot5 {
    position: absolute;
    right: 50px;
    top: 18px;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
    color: rgb(255, 255, 255);
  }

  .subCuerpoLineaNombre {
    width: 362px;
    
  }

  .cuerpoLineaNombre .opciones {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }

}

/* Tabletas en modo retrato */
@media (min-width: 426px) and (max-width: 768px) {}

/* Tabletas en modo paisaje */
@media (min-width: 769px) and (max-width: 1024px) {}

/* Ordenadores portátiles pequeños */
@media (min-width: 1025px) and (max-width: 1280px) {}

/* Monitores de PC de escritorio */
@media (min-width: 1281px) and (max-width: 1600px) {}
