.contact-section {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 80px;

  h2 {
    font-size: 32px;
    font-weight: 300;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.action-row {
  align-items: center;
  button {
    justify-content: center;
  }
}

/* left */
.contact-form-wrapper {
  h2 {
    margin-bottom: 32px;
  }
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;

  input,
  textarea {
    padding: 16px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
  }

  textarea {
    resize: vertical;
    min-height: 120px;
  }

  input:focus,
  textarea:focus {
    outline: none;
    border-bottom-color: var(--color-lime);
  }
}

/* right */
.contact-info {
  padding: 25px;
  border: 1px solid var(--color-gray);
  border-radius: 10px;
  height: fit-content;

  h2 {
    margin-bottom: 16px;
  }

  p {
    font-size: 20px;
    margin-bottom: 2px;
  }
}

.contact-info > p {
  color: var(--color-gray);
  margin-bottom: 35px;
}

/* mobile view */
@media (max-width: 1024px) {
  .contact-content,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-content {
    gap: 60px;
  }
}
