.tez-contact-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  line-height: 1.7;
  border: 1px solid #fecaca;
}

.tez-contact-success {
  display: none;
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: tezSuccessIn 0.45s ease;
}

.tez-contact-success.is-visible {
  display: block;
}

.thesis-green-form-cta .tez-contact-success {
  background: rgba(255, 255, 255, 0.98);
}

.thesis-mini-form-cta .tez-contact-success {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  border: 1px solid #bbf7d0;
}

.tez-contact-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #059669);
  color: #fff;
  font-size: 28px;
  line-height: 56px;
  font-weight: 700;
}

.tez-contact-success p {
  margin: 0;
  color: #166534;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.thesis-green-form.is-submitting,
.thesis-mini-form.is-submitting {
  opacity: 0.7;
  pointer-events: none;
}

@keyframes tezSuccessIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
