.gcp-7754-form-wrapper {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	padding: 30px;
	width: 100%;
}

.gcp-7754-form input,
.gcp-7754-form textarea,
.gcp-7754-form select {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	padding: 12px 15px;
	color: #333;
	font-size: 16px;
	transition: all 0.3s ease;
}

.gcp-7754-form input:focus,
.gcp-7754-form textarea:focus,
.gcp-7754-form select:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
}

.gcp-7754-form input::placeholder,
.gcp-7754-form textarea::placeholder {
	color: rgba(51, 51, 51, 0.6);
}

.gcp-7754-submit {
	background: #4a90e2;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 25px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s ease;
	width: 100%;
	margin-top: 10px;
}

.gcp-7754-submit:hover {
	background: #357abd;
}