html {
    height: 100%;
  }
  body {
    margin:0;
    padding:0;
    font-family: sans-serif;
    
  }

  
  


  .popup-box {
    position: absolute;
     top: 50%; 
     left: 50%;
    width: 400px;
    
    /* height: 90%; */
    padding: 40px;
    display: block;
    transform: translate(-50%, -50%);
    /*background: rgba(255, 255, 255, 0.97);*/
    box-sizing: border-box;
    /*box-shadow: 0 15px 25px rgba(123, 255, 198, 0.65);*/
    border-radius: 10px;
    background-color: rgba(144,193,255,0.7);
    box-shadow: 0 15px 25px rgb(0,0,0);
  }

  
  .popup-box h2 {
    margin: 0 0 30px;
    padding: 0;
    color: #000;
    text-align: center;
    /* height: fit-content; */
    height: 100%;
  }
  
  .popup-box .user-box {
    position: relative;
  }
  
  #selectType{
    margin-bottom: 30px;
  }
  .popup-box .user-box input {
    border-radius: 100px;
    width: 100%;
    margin-top: 20px;
    padding: 8px 10px;
    font: 16px 'Arial';
    color: #0b100b;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
  }
  
  .popup-box .user-box label {
    position: absolute;
    margin-top: 10px;
    top:-30px;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #000;
    pointer-events: none;
    transition: .5s;
  }

  .popup-box form a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #0b100b;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    /* margin-top: 10px; */
    letter-spacing: 2px
  }


  #login-button:hover{
    color: white;
  }


  #Ok-button:hover{
        color: white;
   }

  #send-button:hover{
    color: white;
  }

  #cancel-button:hover{
    color: white;
  }

  #signup-btn:hover{
    color: white;
  }

  .popup-box a:hover {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(148, 140, 140),
                0 0 25px rgb(148, 140, 140),
                0 0 50px #000,
                0 0 100px #000;
  }

  .popup-box a span {
    position: absolute;
    display: block;
  }
  
  .popup-box a span:nth-child(1)
  {
      top: 0;
      left: -100%;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, #000);
      animation: btn-anim1 3s linear infinite;
  }


  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,100% {
      left: 100%;
    }
  }
  
  .popup-box a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #000);
    animation: btn-anim2 3s linear infinite;
    animation-delay: 1s
  }

 a.forget{
    text-decoration: none;
    color: red;
    font: 16px Arial; 
    float : left; 
    padding: 10px;
    letter-spacing: 0px;
    text-transform: capitalize;
  }
  .popup-box a.forget:hover{
    color: #fff;
  }


/*.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
}*/

/* The popup form - hidden by default */

.popup{
  display: none;

}

/*.form-popup {*/
  /**/
  /*display: none;*/
  /*width: 422px;*/
  /*position: absolute;*/
  /*top: 17%;*/
  /*left: 38%;*/

  /*!* z-index: 9; *!*/
/*}*/

/* Add styles to the form container */
/* .form-container { */
  /*border-radius: 20px;*/
  /*max-width: 600px;*/
  /*height: 585px;*/
  /*padding: 10px;*/
  /*background-color: white;*/
/* } */

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
/*.form-container .btn {*/
  /*background-color: #04AA6D;*/
  /*color: white;*/
  /*padding: 16px 20px;*/
  /*border: none;*/
  /*cursor: pointer;*/
  /*width: 100%;*/
  /*margin-bottom:10px;*/
  /*opacity: 0.8;*/
/*}*/

/* Add a red background color to the cancel button */
/*.form-container .cancel {*/
  /*background-color: red;*/
/*}*/

/* Add some hover effects to buttons */

.form-container .send-btn{
    color: #1e751e;
    border: none;
}

.form-container .cancel-btn{
    color: #af100b;
    border: none;
}

.form-container .btn:hover, .open-button:hover {
  opacity: 1;

}
  
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,100% {
      top: 100%;
    }
  }
  
  .popup-box a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #000);
    animation: btn-anim3 3s linear infinite;
    animation-delay: 0s
  }
  
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,100% {
      right: 100%;
    }
  }
  
  .popup-box a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #000);
    animation: btn-anim4 3s linear infinite;
    animation-delay: 1s
  }
  
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,100% {
      bottom: 100%;
    }
  }
  