.contact-form,
.surface-light {
  border-radius: 8px;
}

.contact-form .form-control {
  border-color: #d8e1e8;
  border-radius: 6px;
  min-height: 46px;
}

.contact-form textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.contact-form .form-control:focus {
  border-color: #0f766e;
  box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.16);
}

.contact-form .btn-primary {
  background: #0f766e;
  border-color: #0f766e;
  border-radius: 6px;
  font-weight: 700;
  min-height: 48px;
}

.contact-form .btn-primary:hover,
.contact-form .btn-primary:focus {
  background: #115e59;
  border-color: #115e59;
}

.contact-form .btn-primary:disabled {
  background: #6aa9e9;
  border-color: #6aa9e9;
}

.contact-status {
  align-items: flex-start;
  border: 1px solid transparent;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px 16px;
}

.contact-status[hidden] {
  display: none;
}

.contact-status-icon {
  align-items: center;
  border-radius: 999px;
  display: flex;
  flex: 0 0 28px;
  font-size: 16px;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  line-height: 1;
  width: 28px;
}

.contact-status-message {
  color: inherit;
  font-weight: 700;
  line-height: 1.45;
  padding-top: 2px;
}

.contact-status.is-success {
  background: #ecfdf5;
  border-color: #99f6e4;
  color: #115e59;
}

.contact-status.is-success .contact-status-icon {
  background: #0f766e;
  color: #fff;
}

.contact-status.is-success .contact-status-icon::before {
  content: "OK";
  font-size: 11px;
}

.contact-status.is-error {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #9f1239;
}

.contact-status.is-error .contact-status-icon {
  background: #e11d48;
  color: #fff;
}

.contact-status.is-error .contact-status-icon::before {
  content: "!";
}

@media (max-width: 768px) {
  .contact-status {
    padding: 12px;
  }
}
