/*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.popcontainer{
    max-width: 1200%;
    height: 100vh;
    background: #e3e7ee;
    align-items: center;
    justify-content: center;
    padding: 3rem 2 rem;
    
}*/

.butn{
    padding: 10px 60px;
    background-color:#ddd ;
    -webkit-text-fill-color: #002e5b;
    text-decoration: solid;
    border: 0;
    outline: none;
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    border-radius: 30px;
    position:fixed;
    position: -webkit-sticky;
    position: sticky;
    display: fixed;
   
}

@keyframes glowing{
    0%{
        background-color: #ddd;
        box-shadow: 0 0 5px #ddd;
    }
    50%{
        background-color: #ddd;
        box-shadow: 0 0 20px #ddd;
    }
    100%{
        background-color: #ddd;
        box-shadow: 0 0 5px #ddd;
    }
}
.butn{
    animation: glowing 1300ms infinite    ;
}

.popup{
    max-width: 1200%;
    height: 100vh;
    -webkit-box-sizing: border-box;
    width: 375px;
    background-color: #fff;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    top: 150px;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    position: absolute;
    padding: 30px 30px;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
    z-index:41;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    align-items: center;
    justify-content: center;
}

.open-popup{
    visibility: visible;
    top: 150px;
    display:block;
    transform: translate(-50%, -50%) scale(1);
    margin:0 auto;
}

.open-button{
    position: relative;
    border: none;
    outline: none;
    cursor: pointer;
    display: contents;
    -webkit-box-sizing: border-box;
    margin-right: 150px;
    margin-left: 150px;
    margin-top: 50%;
    margin-bottom: 50%;
    gap: 2rem;
    column-gap: 20px;
    align-items: center;
    justify-content: center;
} 

  .form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 3px solid #f1f1f1;
    z-index: 9;
     align-items: center;
    justify-content: center;
  }
  
  .form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
     align-items: center;
    justify-content: center;
  }
  

  .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-submit {
    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 .btn-cancel {
    background-color: red;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
  }
  
  /* Add some hover effects to buttons */
  .form-container .btn-submit:hover, .open-button:hover {
    opacity: 1;
  }


#closebtn{
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    background: #002e5b;
    -webkit-text-fill-color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0, 0, 0.2);
}