.bloque {
  max-width: 300px;
  width: 100%;        
  border-radius: 12px;
  padding: 15px 25px 25px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; /* Asegura que el padding no afecte el tamaño total */
margin-left: 10px;
    flex-wrap:wrap;
    display: inline-block;
}
   .bimg { border-radius: 10px;}
.bloques {
  width: 32%;        
    display: inline-block;
}
@media (max-width:992px){
    .bloques{
  margin-top: 1em;
    flex:0 0 100%;
    width:100%;
    margin-left: 0;
    }
}
.cscap-error-message {
    margin-top: 5px;
    padding: 5px;
    border-radius: 5px;
    background-color: #000;
    border: 3px solid red;
    font-size: 1.2em;
    width: 100%;
    max-width: 250px;
    color: red;
}

.message, .error {
     margin-top: 5px;
    padding: 5px;
    border-radius: 5px;
    background-color: #000;
    border: 3px solid red;
    font-size: 1.2em;
    width: 100%;
    max-width: 250px;
    color: red;
}

.message p {
    color: green;
}

.error p {
    color: red;
}

.refresh {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2471a3;
    background-image: url(../images/refres.png);
    background-size: cover;
    background-position: center;
  height: 35px;
  width: 35px;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
}
.refresh:hover {
  transform: translateY(-50%) scale(0.98);
    background-image: url(../images/refres2.png);
}
.input_field {
  position: relative;
  height: auto;
  margin-top: 5px;
  width: 100%;
}
.input_field input,
.button button {
  height: 100%;
  width: auto;
  outline: none;
  border: none;
  border-radius: 8px;
}
.input_field input {
  padding: 0 15px;
  border: 3px solid #2471a3;
}
.capt_input input:focus {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.message {
  font-size: 14px;
  margin: 14px 0;
  color: #826afb;
  display: none;
}
.message.active {
  display: block;
  text-align: center;
}
.button button {
  background: #2471a3;
  color: #fff;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
}
.button button:active {
  transform: scale(0.99);
}
.button.disabled {
  opacity: 0.6;
  pointer-events: none;
}
/*Título*/
.download {
  box-sizing: border-box;
  padding: 10px;
  border: none;
  font: normal 18px / normal "Warnes", Helvetica, sans-serif;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  white-space: pre;
  text-shadow: 0 0 10px rgb(24, 23, 24, 1), 0 0 20px rgba(24, 23, 24, 1),
    0 0 30px rgba(24, 23, 24, 1), 0 0 40px #727272, 0 0 70px #727272,
    0 0 80px #4e4e4e, 0 0 100px #2b2b2b;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  width: 100%;

}
/* Estilo para el título cuando se le hace hover */
.download:hover {
  text-shadow: 0 0 10px rgb(73, 73, 73), 0 0 20px rgb(56, 56, 56),
    0 0 30px rgb(48, 48, 48), 0 0 40px #5c5c5c, 0 0 70px #000000,
    0 0 80px #000000, 0 0 100px #000000;
}
.download a{
  color: #fff;
}
/* Estilo de deformación y desenfoque para el texto del capta */
.capt_box input {
  transform: rotate(2deg) skew(20deg);
  filter: blur(1px); /* Aplicar un efecto de desenfoque */
  letter-spacing: 2px; /* Ajusta el espaciado entre letras según sea necesario */
}