/* Styles for the registration pop-up */
#registrationDiv {
    display: block; /* Show the pop-up by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensure pop-up is on top */
    width: 32rem;
}

/* Additional styles to center content */
.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
}

.logo {
    width: 80%; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Center the image horizontally */
    margin: 0 auto 20px; /* Add some margin to separate it from the input field */
}

.btn-primary {
    /* Add any specific styles for the button here */
    display: block; /* Center the button horizontally */
    margin: 30px auto 0; /* Add margin to separate it from the input field */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background for blur effect */
    z-index: 1; /* Ensure the overlay is above other content */
    display: none; /* Initially hidden */
    pointer-events: none; /* Allow clicks to pass through */
}