#dp-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
}

.dp-popup-content {
    max-width: 500px;
    margin: 10% auto;
    background: white;
    padding: 20px;
    position: relative;
    border-radius: 8px;
    text-align: center;
}

.dp-popup-content h2 {
    margin-top: 0;
    font-size: 24px;
    color: #0a2a66;
}

.dp-popup-content input, .dp-popup-content button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}

.dp-close {
    position: absolute;
    top: 10px; right: 15px;
    cursor: pointer;
    font-size: 24px;
}


.dp-popup-content {
    max-width: 800px;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.dp-popup-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.dp-popup-left {
    flex: 1;
    background: #f0f0f0;
}

.dp-popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp-popup-right {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dp-popup-right h2 {
    margin-top: 0;
    font-size: 24px;
}

.dp-popup-right input,
.dp-popup-right button {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    font-size: 16px;
}

.dp-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
