.captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 102px 34px;
  gap: 8px;
  align-items: center;
}

.captcha-code {
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 7px;
  border: 1px solid #b9ccc5;
  border-radius: 5px;
  background: repeating-linear-gradient(135deg, #edf7f3 0, #edf7f3 7px, #e1f0ea 7px, #e1f0ea 14px);
  color: #164f43;
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
}

.captcha-code:hover {
  border-color: #4b9d89;
  background: repeating-linear-gradient(135deg, #e7f5f0 0, #e7f5f0 7px, #d7eee5 7px, #d7eee5 14px);
}

.captcha-code img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.captcha-code span {
  display: inline-block;
  line-height: 1;
}

.captcha-refresh {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: #edf4f1;
  color: #267863;
  cursor: pointer;
}

.captcha-refresh:hover {
  background: #dceee8;
  color: #004c41;
}

.captcha-refresh svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 760px) {
  .captcha-row {
    grid-template-columns: minmax(0, 1fr) 92px 34px;
    gap: 6px;
  }

  .captcha-code {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
