.login-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: 500px;

  position: relative;
}

.login-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;
}


.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  height: 300px;
}

.login-field {
  width: 50%;
  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);
}

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

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

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

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

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

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

.long-field  {
  width: 80%;
}