html,
body {
  width: 100%;
  height: 100%;
  font-family: "Primary";
}

a,
p {
  color: var(--background);
  font-size: 1rem;
  text-orientation: uppercase;
  text-decoration: none;
  pointer-events: auto;
  user-select: none;
}

span {
  color: var(--primary);
  font-weight: 800;
}

.section_success {
  position: absolute;
  width: 45vw;
  height: 100vh;
  top: 0;
  background: var(--background);
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_top {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  color: var(--background);
  z-index: 2;
}

.nav {
  top: 0;
}

.nav_menu {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav_logo p {
  font-family: "Kanji";
  font-size: 2.5rem;
  letter-spacing: -10px;
  font-weight: 600;
  color: var(--primary);
}

.nav_menu a {
  font-size: 1rem;
  opacity: 0.5;
}

.nav_menu a:hover {
  opacity: 1;
  text-decoration: underline var(--background);
}

.nav_menu a#active {
  opacity: 1;
  text-decoration: underline;
}

.section_image {
  display: flex;
  height: 100vh;
  width: 55vw;
  position: absolute;
  top: 0;
  right: 0;
}

.section_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section {
  position: absolute;
  width: 45vw;
  height: 100vh;
  top: 0;
  background: var(--background);
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

#section_header_sub {
  font-weight: 100;
  line-height: 2;
}

.section_header_title {
  position: relative;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 3rem;
}

.section_form {
  display: flex;
  flex-direction: column;
  padding: 2em 0;
}

.section_form > * {
  position: relative;
}

.section_form_button > * {
  position: relative;
}

.section_form input,
textarea {
  background: none;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--primary);
  padding: 0.8em;
  color: var(--primary);
  margin: 1em 0;
  font-size: 1.2rem;
}

textarea {
  resize: none;
}

::placeholder,
textarea {
  font-family: "Primary";
}

.section_form_button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 40px;
  text-align: left;
}

.section_form_button button {
  font-size: 7vw;
  font-family: "Secondary";
  border: none;
  background: none;
  color: var(--secondary);
  cursor: pointer;
  border-radius: 8px;
  transition: opacity 0.3s;
}

.section_form_button button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.section_form_button button:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: var(--secondary);
}

.section_form_button button:disabled:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  html,
  body {
    height: 100%;
  }

  a,
  p {
    color: var(--primary);
  }

  .section_image {
    display: none;
  }

  .section {
    width: 100vw;
  }

  .section_form_button {
    text-align: center;
  }

  .section_form_button button {
    padding-bottom: 4rem;
    font-size: 15vw;
  }
}
