.nicco-contact-captcha {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: end;
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid #e8eaee;
  border-radius: 14px;
  background: #f7f8fa;
}

.nicco-contact-captcha__media {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nicco-contact-captcha__image {
  display: block;
  width: 168px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  object-fit: cover;
}

.nicco-contact-captcha__refresh {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #131313;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nicco-contact-captcha__refresh:hover {
  border-color: rgba(242, 82, 13, 0.4);
  color: #f2520d;
  background: rgba(242, 82, 13, 0.06);
}

.nicco-contact-captcha__refresh svg {
  width: 16px;
  height: 16px;
}

.nicco-contact-captcha__field {
  margin: 0;
}

.nicco-contact-captcha__field .form-control {
  min-height: 50px;
  border-radius: 10px;
}

.nicco-contact-captcha__hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: #9ca3af;
}

.nicco-contact-captcha--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.nicco-contact-captcha--dark .nicco-contact-captcha__image {
  border-color: rgba(255, 255, 255, 0.14);
}

.nicco-contact-captcha--dark .nicco-contact-captcha__refresh {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nicco-contact-captcha--dark .nicco-contact-captcha__refresh:hover {
  border-color: rgba(242, 82, 13, 0.55);
  color: #f2520d;
  background: rgba(242, 82, 13, 0.12);
}

.nicco-contact-captcha--dark .nicco-contact-captcha__field input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nicco-contact-captcha--dark .nicco-contact-captcha__hint {
  color: rgba(255, 255, 255, 0.55);
}

.form-box .nicco-contact-form .alert {
  margin-bottom: 16px;
}

.form-box .nicco-contact-form .alert-danger {
  background: rgba(254, 242, 242, 0.95);
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 10px 12px;
}

.form-box .nicco-contact-form .alert-success {
  background: rgba(236, 253, 243, 0.95);
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 10px 12px;
}

.form-box .nicco-contact-form label.error {
  color: #fca5a5;
  font-size: 12px;
  margin-top: 6px;
  display: block;
}

#contact_form #form-result.alert-danger,
.nicco-contact-form #form-result.alert-danger {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

#contact_form #form-result.alert-success,
.nicco-contact-form #form-result.alert-success {
  background: #ecfdf3;
  color: #166534;
  border-color: #bbf7d0;
}

@media (max-width: 575.98px) {
  .nicco-contact-captcha {
    grid-template-columns: 1fr;
  }
}
