@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
 
 
#captchaHeading {
  
}
#captcha2 {
 font-size: 20px;
 letter-spacing: 3px;
 margin: 0px;
 display: block;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 color:#1F6EB3!important;
}
  
#refreshButton2 {
 background-color: #1F6EB3;
 border: 0px;
 font-style: 16px;
 color: #ffffff;
 }
#textBox2 {
    border: 1px solid #ced4da;
    padding: 4px;
    width: calc(100% - 110px);
}


.incorrectCaptcha2 {
 color: #FF0000;
}
.correctCaptcha2 {
 color: #1F6EB3;
}
.capt{
 border-width: 1px;
  border-style: solid;
  border-color: gray;

}


/*///////////////////////////////////////////*/
.btn-1 {
  background-image: linear-gradient(to right, #1f6e96 0%, #180963 51%, #1f6e96 100%); 
} 

#submitButton2 { 
  width: 200px; 
  cursor: pointer; 
  flex: 1 1 auto; 
  margin: 10px; 
  padding: 10px 50px; 
  text-align: center; 
  text-transform: uppercase; 
  transition: 0.5s; 
  background-size: 200% auto; 
  color: white; border: none; /* text-shadow: 0px 0px 10px rgba(0,0,0,0.2);*/ 
  box-shadow: 0 0 20px #eee; border-radius: 8px; 
 } 

 #submitButton2:hover { 
  background-position: right center; /* change the direction of the change here */ 
 }


.textOnly
{ 
  color: #ff0000;
  font-size: 14px;
}


/*//////////////////////////////////////////////////////*/
/* Botón ENVIAR con ícono */
#submitButton2.btn-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* centra horizontalmente texto + ícono */
  gap: 8px; /* espacio entre texto e ícono */
  transition: all 0.3s ease;
  width: 200px;  
  cursor: pointer;
  margin: 10px;
  padding: 10px 50px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-image: linear-gradient(to right, #1f6e96 0%, #180963 51%, #1f6e96 100%);
  background-size: 200% auto;
  color: white;
  border: none;
  box-shadow: 0 0 20px #eee;
  border-radius: 8px;
}

/* Ícono avión */
#submitButton2 i {
  color: #fff; /* avión blanco */
  transition: transform 0.4s cubic-bezier(0.3, 0.9, 0.4, 1.3);
}

/* Efecto al hacer hover: leve avance en diagonal con aceleración */
#submitButton2:hover i {
  transform: translate(6px, -4px) rotate(12deg);
  background-position: right center;
}