.popup button{
    display: block;
    margin:  0 0 20px auto;
    background-color: transparent;
    font-size: 30px;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
}


.popup {
    background-color: #051650;
    width: 100%;
    height: 50%; /* Adjusted to cover half of the screen */
    padding: 40px; /* Adjusted padding */
    position: fixed; /* Fixed position to stay on screen */
    bottom: 0; /* Changed to start from the bottom of the screen */
    left: 0;
    border-radius: 0px;
    font-family: "Poppins", sans-serif;
    display: none;
    text-align: center;
   
    transition: opacity 0.5s, transform 0.5s ease-out; /* Added transition for smoother appearance */
    transform: translateY(100%); /* Initially moved downward */
    background-color: rgba(5, 22, 80, 0.950); /* Adjust opacity for desired fade effect */
    z-index: 999; /* Ensure the popup appears on top */
    opacity: 1;
    display: none
}


.popup.active {
    opacity: 1; /* Adjusted opacity to 100% */
    transform: translateY(0); /* Slides up to the visible area */
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998; /* Place it below the popup but above other content */
}

/* Your existing styles */
/* ... */

/* Styling for the buttons */
.button-container {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.register-button,
.skip-button {
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin: 10px;
}

.register-button,
.skip-button {
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    border: 1px solid #ffffff; /* White border */
}

.skip-button {
    margin-left: 10px; /* Adjust spacing */
}
 
 .popup h2{
    color: white;
    text-align: center];
 }

 .popup p {

    color: white;
    text-align: center;
 }