.login_pop{
  margin: 0 auto;
  width: 30%;
  height: 430px;
  background: black;
  color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 20px;
  z-index: 990;
  display: none;
}
.login_pop_overlay{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.555);
  z-index: 990;
  display: none;
}

.login_pop i{
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.pop_title{
  margin: 20px 0;
  font-size: 20px;
  text-align: center;
}
.pop_title p{
  margin-top: 15px;
  letter-spacing: 2px;
  font-weight: 700;
}
.login_input{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  margin: 0 auto;
}

.login_input input{
  margin-bottom: 15px;
}

.login_pop_btn{
  width: 20%;
  height: 30px;
  background-color: aqua;
  cursor: pointer;
}

.login_pop .join a{
  color: white;
}