.login-btn{
    background: rgb(149, 135, 163);
    padding: 5px 5px;
    color: black;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
  }

  .login-btn:hover{
    background: rgb(169, 167, 194);
    color: rgb(0, 0, 0);
  }

  .popup{
    position: fixed;
    display: flex;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s opacity 0,5s;
  }

  .popup-active{
    visibility: visible;
    opacity: 1;
  }
.popup-content{
    position: relative;
    height: 40%;
    width: 40%;
    display: flex;
    background: rgb(112, 112, 156);
    border-radius: 15px;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;

  }
.text-input{
    width: 50%;
    height: 30px;
    padding: 8x;
    border: 1px solid gray;
  }

  .close-button{
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
  }

  .close-button:hover{
    color: white;
  }
