.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c7c7c7;
  background: #fff;
  font-size: 14px;
  padding: 9px;
  font-family: var(--font-main);
}

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

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ffffff' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px 8px;
}

.contact-form select::-ms-expand {
  display: none;
}

.contact-form button {
  margin-top: 4px;
  width: fit-content;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0b4ea3;
}


.contact-form .contact-submit-btn {
  width: var(--ornate-btn-width, 220px);
  height: var(--ornate-btn-height, 62px);
  padding: 0 26px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  background: transparent url("/static/resources/images/button.xml") center / 100% 100% no-repeat;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: var(--ornate-btn-font-size, 16px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
}

.contact-form .contact-submit-btn:hover,
.contact-form .contact-submit-btn:focus-visible {
  background: transparent url("/static/resources/images/button.xml") center / 100% 100% no-repeat;
  filter: brightness(0.96);
  outline: none;
}
