.contact-form {
  display: flex;
  flex-direction: column;
  margin: 30px 0px 30px 0px;

  gap: 10px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-row {
  display: flex;
  gap: 10px;
}
label {
  font-weight: 500;
  margin-bottom: 6px;
}
input,
textarea {
  width: 100%;
  padding: 10px;
  border: none;
  background-color: transparent;
  color: black;
  box-sizing: border-box;
  gap: 10px;
  outline: none;
  border-bottom: 1px solid #000000; /* highlight on focus */
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 1.1rem;
}
input::placeholder,
textarea::placeholder {
  color: #aaa;
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 1.1rem;
  font-style: italic;
  outline: none;
}
input:focus,
textarea:focus {
  outline: none;
  border-bottom: 1.5px solid #000000; /* highlight on focus */
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 1.1rem;
}
