.submit-button:hover {
    background-color: #444;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 300px;
    padding: 20px;
    border-radius: 8px;
}

.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-content p{
    margin-bottom: 10px;
    text-align: center;
}

.popup-content a {
    text-decoration: underline;
    z-index: 100;
}

.popup-button {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--button-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 90%;
}

.popup-button:hover {
    background-color: #444;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(5px);
}