ul {
  width: 22em;
  display: flex;
  border: 1px solid transparent;
  justify-content: space-evenly;
  font-weight: 700;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: black;
}
nav {
  height: 60px;
  border: 1px solid black;
  justify-content: right;
  align-items: center;
  display: flex;
}
#login-form-div {
  border: 1px solid transparent;
  width: 25%;
  margin: 20px auto;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 169px;
}
input {
  padding: 6px 12px;
}
input[type="submit"] {
  padding: 6px;
  width: 50%;
  background: teal;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
img{
  position: absolute;
  left: 48%;
  width: 42px;
  z-index: 1;
  top: 3%;
}