.ghl-subscribe-form-wrapper {
	max-width: 500px;
	margin: 20px auto;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ghl-subscribe-form-title {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: 600;
	color: #333;
	text-align: center;
}

.ghl-subscribe-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.ghl-form-group {
	display: flex;
	flex-direction: column;
}

.ghl-form-group label {
	margin-bottom: 5px;
	font-weight: 500;
	color: #555;
	font-size: 14px;
}

.ghl-form-group .required {
	color: #e74c3c;
}

.ghl-form-control {
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.ghl-form-control:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.ghl-subscribe-btn {
	padding: 12px 24px;
	background-color: #3498db;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	position: relative;
}

.ghl-subscribe-btn:hover {
	background-color: #2980b9;
}

.ghl-subscribe-btn:disabled {
	background-color: #95a5a6;
	cursor: not-allowed;
}

.ghl-btn-loader {
	display: inline-block;
}

.ghl-form-message {
	margin-top: 10px;
	padding: 12px;
	border-radius: 4px;
	font-size: 14px;
	text-align: center;
}

.ghl-form-message.ghl-success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.ghl-form-message.ghl-error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

