.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
}

.popup-container {
	display: flex;
	flex-direction: row;
    background: #fff;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    z-index: 10;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.popup-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px 8px 0 0;
}

.popup-banner {
    width: 50%;
}

.popup-content {
    padding: 25px;
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.popup-title {
    margin: 0 0 15px;
    font-size: 24px;
    color: #333;
}

.popup-desc {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.popup-form {
	width: 100%;
    margin-bottom: 0;
}

.popup-form input {
    border: 1px solid #cacaca;
	font-size: 18px !important;
}

.popup-form input[type="submit"] {
    width: 100%;
}

.popup-form input::placeholder {
    color: #cacaca;
}

.popup-form .form-group {
    margin-bottom: 6px;
}

.popup-button {
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: opacity 0.3s ease;
	color: #fff !important;
	width: 100%;
}

.popup-button:hover {
    opacity: 0.9;
}