.contact-form {
    width: 100%;
}

.form-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2rem;
}

input {
  margin-bottom: 24pt;
}

input, textarea {
  padding: 1rem;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1.1rem;
}

input:focus, textarea:focus {
  outline: 1px solid var(--color-accent);
}

textarea {
  resize: vertical;
}

::selection {
  background: #ffc7b8;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  border: 1px solid #6bd4b1;
  -webkit-text-fill-color: #2A293E;
  -webkit-box-shadow: 0 0 0px 1000px #f8f4e5 inset;
  transition: background-color 5000s ease-in-out 0s;
}