#popup-container {
    position: fixed;
    bottom: -100px; /* Hidden initially */
    right: 20px;
    width: 500px; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    z-index: 1000; /* Ensure it's above other elements */
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #e9e9e9;
}

#popup-container.show {
    bottom: 20px; /* Slides up */
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

#subscribe-form input {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    color: #fff;
  font-family: inherit;
  background-color: transparent;
  border: 1px solid #414141;
}

#subscribe-form input::placeholder{
    opacity: 0.5;
    color: #ffffff;
}

#subscribe-form button {
    width: 100%;
    margin-top: 10px;
    background: #313131;
    border: 1px solid #414141;
    color: #717171;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
}

#subscribe-form button:hover {
    background-color: #fff;
  border-color: #fff;
}

#success-message {
    color: green;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    display: none;
}

@media (max-width: 768px) {
    #popup-container {
        width: 450px;
    }
}

@media (max-width: 480px) {
    #popup-container {
        width: 350px;
    }
}