.popup {
    display: none;
    position: fixed;
    width: 800px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;

    @media (max-width: 800px) {
        width: 400px;
        height: 350px;
    }
}

.popup .popup-text {
    color: #e76012;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;


    p {
        font-size: 16px;
    }
}
.popup input {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}
.popup button {
    padding: 10px;
    background: #e76012;
    color: white;
    border: none;
    cursor: pointer;
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}