.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: -10%;
    width: 100%;
    height: 110%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.623); /* Black background with opacity */
    backdrop-filter: blur(20px); /* Optional: adds a blur effect to the background */
    overflow: hidden;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.modal-close {
    cursor: pointer;
    font-size: 1.5rem;
    border: none;
    background: none;
}

.modal-body {
    margin-top: 10px;
}

.modal-body input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.modal-body button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-body button:hover {
    background-color: #0056b3;
}
