/*Diseño global de los botones*/
.cuerpoRPU button {
  border: 0;
  padding: 5px;
  margin-top: 16px;
}

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

/*Diseño del boton DESCARGAR*/
.cuerpoRPU .descargar button {
  background-color: #008cff;
    color: whitesmoke;
    font-weight: bold;
    border-radius: 30px;
    width: 80%;
    font-size: 23px;
}

.cuerpoRPU .descargar button:hover {
  background-color: #008cff;
  color: whitesmoke;
  font-weight: bold;
  border-radius: 30px;
  width: 80%;
  font-size: 23px;
}

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

/*Diseño del boton Regresar*/
.cuerpoRPU .opciones .back {
  color: whitesmoke;
  border-radius: 30px;
  width: 80%;
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*Diseño del boton ENVIAR*/
.cuerpoRPU .opciones .send {
  border-radius: 30px;
  width: 80%;
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: whitesmoke;
}

/*Estilos globales para los botones de back y send*/
.cuerpoRPU .opciones button {
  width: 9rem !important;
  height: 2.3rem;
}

/*Tamaño de la imagen del robot*/
.cuerpoRPU .robot {
  height: 200px;
  margin-top: -5vh;
}

/*Tamaño de la imagen del logo*/
.cuerpoRPU .logo {
  width: 260px;
  height: auto;
}

/*Diseño del input*/
.cuerpoRPU input {
  border-radius: 20px;
  border: 1px solid #000f4e;
  width: 77%;
  height: 40px;
  padding-left: 15px;
  font-size: 21px;
}

/*Div de datos a ingresar RPU y su titulo*/
.cuerpoRPU .datosIngresar {
  width: 100%;
  text-align: center;
}

.subCuerpoRPU {
  width: 450px;
  
}

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

#Digitos {
  font-size: 18px;
  margin-bottom: 0px;
  margin-top: 7px;
  color: #000f4e;
}

@media (max-width: 320px) {

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

  .subCuerpoRPU {
    width: 362px;
    
  }

}

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

  .cuerpoLineaPrincipal .robot {
    height: 150px;
    margin-top: -5vh;
  }

  .cuerpoLineaPrincipal .logo {
    width: 244px;
    height: auto;
  }

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

  .cuerpoLineaPrincipal .descargar button {
    background-color: #008cff;
    color: whitesmoke;
    font-weight: bold;
    border-radius: 30px;
    width: 80%;
    font-size: 20px;
  }

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

  .subCuerpoRPU {
    width: 362px;
    
  }

}

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

  .cuerpoLineaPrincipal .robot {
    height: 150px;
    margin-top: -5vh;
  }

  .cuerpoLineaPrincipal .logo {
    width: 244px;
    height: auto;
  }

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

  .cuerpoLineaPrincipal .descargar button {
    background-color: #008cff;
    color: whitesmoke;
    font-weight: bold;
    border-radius: 30px;
    width: 80%;
    font-size: 20px;
  }

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

  .subCuerpoRPU {
    width: 362px;
    
  }

}

/* 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) {}

/* Monitores de PC de escritorio grandes */
@media (min-width: 1601px) and (max-width: 1920px) {}

/* Televisores y proyectores HD */
@media (min-width: 1921px) and (max-width: 2560px) {}

/* Televisores y proyectores 4K */
@media (min-width: 2561px) {}

