.contactForm {
  background-color: var(--corpHighlight);
  padding: 2em;
  border-radius: 12px;
  width: 60%;
  margin: 3em auto;
  box-shadow: 4px 4px 15px rgba(71, 52, 56, 0.6);
  font-family: 'Raleway', sans-serif;
  color: white;
}

.cFItem {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5em;
}

.cFField {
  font-size: 1.25em;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  visibility: hidden;
}

.cFInput {
  padding: 10px;
  border-radius: 8px;
  border: solid 2px white;
  background-color: var(--corpPrimary);
  color: white;
  font-size: 1.1em;
  font-family: 'Raleway', sans-serif;
}

.cFInput:focus {
  outline: none;
  border-color: var(--artPrimary);
  box-shadow: 0 0 8px var(--artPrimary);
}

textarea.cFInput {
  min-height: 120px;
  resize: vertical;
}

.cFDescription {
  font-size: 1em;
  margin-top: 5px;
  color: #d8d8d8;
}

.cFButton {
  background-color: var(--artPrimary);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1.25em;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s;
  width: 100%;
}

.cFButton:hover {
  background-color: var(--artSecondary);
  transform: scale(1.05);
}

.cFButton:active {
  transform: scale(0.98);
}

@media (max-width: 1024px) {
  .contactForm {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .contactForm {
    width: 90%;
    padding: 1.5em;
  }

  .cFButton {
    font-size: 1.1em;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .contactForm {
    width: 95%;
    padding: 1em;
  }

  .cFField {
    font-size: 1.1em;
  }

  .cFButton {
    font-size: 1em;
    padding: 8px 15px;
  }
}
