.sign-up-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;

  position: relative;
}

.sign-up-cont::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  opacity: 0.75;
  margin-bottom: -40px;

  background-image: url("/assets/weed-f2722a0f.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}


.sign-up-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 100px;
  width: 50%;
}

.sign-up-form > div {
  width: 100%;
}

.sign-up-field {
  width: 100%;
  height: 2em;
  
  font-size: 1.5em;
  text-align: center;
  border-radius: 0.5em 0.5em 0 0;
  border: none;
  border-bottom: thin solid black;

  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.sign-up-field:focus {
  outline: solid 1px var(--button-green);
}

.sign-up-inline-fields {
  width: 50%;
  height: 2em;
  display: flex;
  gap: 20px;
}

.sign-up-submit {
  border-radius: 0.25em;
  min-width: min-content;
  border: none;
  background-color: var(--button-green);
  opacity: 0.75;
  color: aliceblue;
}

.sign-up-submit:hover {
  background-color: rgb(3, 50, 3);
}

.sign-up-sublinks {
  display: flex;
  width: 30%;
  justify-content: space-between;
}

.sign-up-sublinks a {
  text-decoration: none;
  font-style: italic;
  color: black;
  opacity: 0.8;
}

.sign-up-sublinks a:hover {
  text-decoration: underline;
}

.long-field  {
  width: 80%;
}
