/* gdp-style.css */
#gdp-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

#gdp-popup-content {
	background: #fff;
	padding: 30px;
	max-width: 500px;
	width: 90%;
	position: relative;
	border-radius: 5px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.5);
	max-height: 90vh;
	overflow-y: auto;
}

#gdp-popup-close {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 30px;
	cursor: pointer;
	color: #333;
	line-height: 1;
}
#gdp-popup-content  h2.gform_title {
	color: #e72e26;
}
#gdp-popup-content input.gform_button {
    border-radius: 50px !important;
    background-color: #e72e26 !important;
    text-transform: uppercase !important;
}