/* CAPTCHA-Styling */
.captcha-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
}

.captcha-image {
  width: 200px;
  height: 60px;
  border: 1px solid var(--border-color, #ddd);
  border-radius: 4px;
  cursor: pointer;
  background: #f5f5f5;
}

.captcha-input {
  flex: 1;
  min-width: 150px;
}

.captcha-refresh {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary, #666);
  font-size: 14px;
  padding: 4px 8px;
}

.captcha-refresh:hover {
  color: var(--text-primary, #333);
  text-decoration: underline;
}
