.bq-container {
  width: 340px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.bq-container input,
.bq-container select {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  box-sizing: border-box;
}

.bq-container button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: #fff;
  border: none;
}

/* CAPTCHA */
.bq-captcha {
  margin: 10px 0;
  padding: 10px;
  background: #f1f3f5;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.bq-captcha label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.bq-captcha input {
  margin: 0;
  transform: scale(1.1);
}

.bq-disclaimer {
  font-size: 12px;
  margin-top: 10px;
  color: #555;
  text-align: left;
  border-left: 4px solid #007bff;
  padding: 8px;
  background: #f8f9fa;
}

/* Popup */
.bq-overlay {
  display: none;
  position: fixed;
  top:0;left:0;
  width:100%;height:100%;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
}

#qrcode {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.bq-card {
  width:300px;
  height:450px;
  background:#fff;
  border-radius:10px;
  display:flex;
  flex-direction:column;
  text-align:center;
  position:relative;
}

.bq-header {
  background:#007bff;
  color:#fff;
  padding:15px;
}

.bq-info {
  padding:10px;
}

.bq-footer {
  padding:10px;
  font-weight:bold;
}

.bq-close {
  position:absolute;
  top:10px;
  right:15px;
  color:#fff;
  cursor:pointer;
}