.contact-us-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('/resource/images/contact-us-background.png');
  background-size: cover;
  background-position: center;
  display: flex;
}

.contact-us-background .shadow {
  flex: 1;
  background: linear-gradient(180deg, #000a, #0006, #000c);
  box-shadow: #0003 0 0 3rem 3rem;
}

.contact-us-header {
  margin: 10rem 0 4rem 0;
  position: relative;
  text-align: center;
}

.contact-us-header .headline-1 {
    max-width:55rem;
    font-size:2.8rem;
}

.contact-us-header .actions {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  margin: auto;
}

.contact-us-header .actions a {
  background: var(--background);
  border: 1pt solid var(--border);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem;
  width: 16.5rem;
  margin: 1rem;
}

@media (max-width:660px) {
  .contact-us-header .actions a {
    margin: 1rem auto;
  }
}

.contact-us-header .actions a:hover {
  background-color: var(--background-2);
}

.contact-us-header .actions a:focus {
  border-color: var(--primary);
}

.contact-us-header .actions a img {
  height: 3rem;
  object-fit: contain;
  margin: 0.5rem;
}

.contact-us-body {
  position: relative;
  margin: 4rem auto;
  width: 34rem;
  max-width: 90vw;
}

.contact-us-body .headline-3 {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 500;
  color: white;
  text-align: center;
  margin: 5rem auto;
}

#upgrade-form label,
#upgrade-form textarea,
#upgrade-form input:not([role=button]) {
  color: white;
  font-size: 1rem;
  font-weight: 400;
  background: var(--background);
}

#upgrade-form textarea {
  padding: 1rem;
  resize: vertical;
  height: 10rem;
}

#upgrade-form input:not([type=checkbox]):not([role=button]) {
  padding: 1.5rem 1rem;
  margin-bottom: 1rem;
}

#upgrade-form input[type=submit] {
  margin: 2rem auto;
  width: fit-content;
  display: block;
}
