.captcha-card{
  margin-top: 16px;
  padding: 14px 16px 8px; 
  border: 2px solid #0056b3;
  border-radius: 12px;
  background: #f8fbff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom:20px;
}


.captcha-header{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #0b3a87;
}
.captcha-header i{ font-size: 1.1em; }

.captcha-label{
  margin: 6px 0 12px;
  font-weight: 700;
}
.captcha-question{
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e9f2ff;
  border: 1px solid #cfe3ff;
  font-weight: 800;
  letter-spacing: .2px;
}

.captcha-input-row{
  display: flex;
  justify-content: center;
  width: 100%;
}
.captcha-input-row input{
  max-width: 220px;
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1.8px solid #c7d7f6;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  background: #fff;
  text-align: center;
}
.captcha-input-row input:focus{
  border-color: #0056b3;
  box-shadow: 0 0 0 3px rgba(0,86,179,.12);
}



@media (max-width: 480px){
  .captcha-card{ 
      padding: 12px;
      
  }
  .captcha-input-row input{ 
      height: 40px; 
      font-size: 15px; 
      
  }
}
