body {
  background: var(--gradient);
  display: flex;
  flex-direction: column;
  margin-top: 16rem;
}
body .flash {
  width: calc(100% - 16rem);
  margin: 0 8rem 2rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  font-weight: 600;
  background-color: var(--transparent-white);
  border: solid 4px var(--dark-cyan);
  color: var(--dark-cyan);
  box-shadow: 4px 4px 0px var(--dark-cyan);
}
body .flash.flash-error {
  border-color: var(--dark-pink);
  color: var(--dark-pink);
  box-shadow: 4px 4px 0px var(--dark-pink);
}
body section.contact-hero {
  display: flex;
  justify-content: center;
  text-align: center;
  width: calc(100% - 16rem);
  margin: 0 8rem;
}
body section.contact-hero > div {
  flex: 1;
  padding: 1rem;
  width: 100%;
}
body section.contact-hero > div.contact-left-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body section.contact-hero > div.contact-left-container h1, body section.contact-hero > div.contact-left-container p, body section.contact-hero > div.contact-left-container a {
  margin-bottom: 1rem;
  text-align: left;
  width: 80%;
}
body section.contact-hero > div.contact-left-container p {
  color: var(--dark-cyan);
  font-size: 18px;
}
body section.contact-hero > div.contact-left-container a {
  text-decoration: none;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 4rem;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.25s ease;
  color: var(--dark-cyan);
  background-color: var(--light-cyan);
  border: solid 4px var(--dark-cyan);
  box-shadow: -4px 4px 0px var(--dark-cyan);
  width: -moz-max-content;
  width: max-content;
}
body section.contact-hero > div.contact-left-container a:hover {
  background-color: var(--dark-cyan);
  color: var(--cyan);
  transform: translate(4px, -4px);
  box-shadow: -8px 8px 0px var(--dark-cyan);
}
body section.contact-hero > div.contact-right-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body section.contact-hero > div.contact-right-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
body section.contact-hero > div.contact-right-container form div.input-group {
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
body section.contact-hero > div.contact-right-container form div.input-group label {
  text-align: left;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
body section.contact-hero > div.contact-right-container form div.input-group input,
body section.contact-hero > div.contact-right-container form div.input-group textarea {
  width: 100%;
  padding: 1rem;
  border: 4px solid #322E33;
  background-color: var(--light-pink);
  color: var(--dark-pink);
  font-family: inherit;
}
body section.contact-hero > div.contact-right-container form div.input-group input:focus,
body section.contact-hero > div.contact-right-container form div.input-group textarea:focus {
  border-color: var(--dark-cyan);
  outline: none;
}
body section.contact-hero > div.contact-right-container form div.input-group input {
  height: 3rem;
  font-size: 18px;
  border-radius: 4rem;
}
body section.contact-hero > div.contact-right-container form div.input-group textarea {
  border-radius: 1rem;
  resize: vertical;
  font-size: 16px;
}
body section.contact-hero > div.contact-right-container form button[type=submit] {
  align-self: flex-start;
  padding: 1rem 1.5rem;
  border-radius: 4rem;
  font-size: 18px;
  font-weight: 500;
  background-color: var(--dark-cyan);
  border: none;
  color: var(--white);
  font-family: inherit;
  cursor: pointer;
}
body footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

@media (max-width: 1024px) {
  body {
    margin-top: 12rem;
  }
  body .flash {
    width: calc(100% - 6rem);
    margin: 0 3rem 2rem;
  }
  body section.contact-hero {
    width: calc(100% - 6rem);
    margin: 0 3rem;
  }
}

@media (max-width: 768px) {
  body {
    margin-top: 10rem;
  }
  body .flash {
    width: calc(100% - 2rem);
    margin: 0 1rem 2rem;
  }
  body section.contact-hero {
    flex-direction: column;
    width: calc(100% - 2rem);
    margin: 0 1rem;
    gap: 2rem;
  }
  body section.contact-hero > div.contact-left-container h1,
  body section.contact-hero > div.contact-left-container p,
  body section.contact-hero > div.contact-left-container a {
    width: 100%;
  }
  body section.contact-hero > div.contact-left-container a {
    width: 100%;
    text-align: center;
  }
  body section.contact-hero > div.contact-right-container form button[type=submit] {
    align-self: stretch;
    text-align: center;
  }
  body footer {
    position: static;
  }
}
