@import url(register.css);

#content {
  display: grid;
  grid-template-columns: 50% 50%;
  margin: 5px;
  padding: 10px;
  font-size: 1.1em;
}

.item {
  position: relative;
  padding: 10px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
}

.item:before {
  content: "→";
  position: absolute;
  inset: 0;
  max-width: 10px;
  margin-left: -15px;
  opacity: 0.00001;
  transition: all 0.25s;
  display: flex;
  align-items: center;
}
.item:hover:before {
  margin-left: -10px;
  opacity: 1;
}
.item:hover {
  text-shadow: 0 0 10px white, 0 0 black;
}

#login-form {
  margin: 5%;
  min-width: 30vw;
  max-width: 700px;
}

span#login-btn {
  z-index: 9999;
}

section {
  justify-content: center;
}
