.contact-page {
  min-width: 100vw;
  min-height: 100vh;
  background: var(--color-bg);
}

.contact-form {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: flex-end;
}

form {
  position: relative;
  width: 30%;
}

.contact-form form input {
  border: none;
  border-bottom: 1px solid var(--color-text);
  outline: none;
  padding: 0.5em 0;
  width: 100%;
}

.contact-form form ::placeholder {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 300;
}

.contact-form button {
  border: none;
  outline: none;
  background: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.contact-subhero {
  padding: 1em;
}

@media (max-width: 900px) {
  form {
    width: 100%;
    padding-bottom: 3em;
  }
}
