.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-overlay.active {
    display: flex;
}

.popup-container {
    background-color: #FFF;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F0E9D8;
}

.popup-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.popup-close {
    color: #784494;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
}

.popup-close:hover {
    color: #3F296E;
}

.popup-content {
    padding: 20px;
}

.popup-form .form-row {
    margin-bottom: 15px;
}

.popup-form input {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #DDD;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.popup-form input:focus {
    border-color: #784494;
}

.popup-form .button {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}