

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

.popup-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 30px;
width: 500px; /* Increased width from 300px to 400px */
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
    margin-top: 0;
    color: green;
}

.popup-content input,
.popup-content button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.popup-content button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.popup-content button:hover {
    background-color: #45a049;
}

.popup-content #close-popup {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}

#thank-you-message {
    display: none;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    margin-top: 10px;
}



@media (max-width: 600px) {
	.popup-content {
		width: 90%; /* More screen width on small devices */
		padding: 10px; /* Less padding to fit small screens */
	}
}

	#close-popup {
		position: absolute;
		top: 10px;
		right: 10px;
		cursor: pointer;
	}
	input[type="text"] {
		width: 90%;
		padding: 20px;
		margin: 20px 0;
	}

	button {
		padding: 10px 20px;
		background-color: #4CAF50;
		color: white;
		border: none;
		cursor: pointer;
	}