/* HL2GO Contact Form Styles */

.hl2go-contact-form-wrapper {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
}

.hl2go-contact-form-title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 30px 0;
	color: var(--text-primary, #ffffff);
	font-family: 'Orbitron', sans-serif;
	text-align: center;
}

.hl2go-contact-form {
	background: var(--bg-card, #111827);
	border: 1px solid var(--border-color, #1f2937);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hl2go-cf-field {
	margin-bottom: 20px;
}

.hl2go-cf-field label {
	display: block;
	margin-bottom: 8px;
	color: var(--text-primary, #ffffff);
	font-weight: 500;
	font-size: 14px;
}

.hl2go-cf-field .required {
	color: var(--accent-color, #ff0066);
}

.hl2go-cf-field input[type="text"],
.hl2go-cf-field input[type="email"],
.hl2go-cf-field textarea {
	width: 100%;
	padding: 12px 15px;
	background: var(--bg-darker, #050811);
	border: 1px solid var(--border-color, #1f2937);
	border-radius: 6px;
	color: var(--text-primary, #ffffff);
	font-size: 14px;
	font-family: inherit;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.hl2go-cf-field input[type="text"]:focus,
.hl2go-cf-field input[type="email"]:focus,
.hl2go-cf-field textarea:focus {
	outline: none;
	border-color: var(--primary-color, #00ff88);
	box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.hl2go-cf-field textarea {
	resize: vertical;
	min-height: 120px;
}

.hl2go-cf-turnstile {
	margin-bottom: 20px;
}

.hl2go-cf-turnstile [id^="turnstile-container-"] {
	min-height: 65px;
	display: block;
	margin: 10px 0;
}

.hl2go-cf-submit {
	background: var(--primary-color, #00ff88);
	color: #000;
	border: none;
	border-radius: 6px;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.hl2go-cf-submit:hover {
	background: #00cc6f;
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.hl2go-cf-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.hl2go-cf-message {
	padding: 15px;
	border-radius: 6px;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.5;
}

.hl2go-cf-message-success {
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid var(--primary-color, #00ff88);
	color: var(--primary-color, #00ff88);
}

.hl2go-cf-message-error {
	background: rgba(255, 0, 102, 0.1);
	border: 1px solid var(--accent-color, #ff0066);
	color: var(--accent-color, #ff0066);
}

/* Responsive */
@media (max-width: 768px) {
	.hl2go-contact-form-wrapper {
		padding: 15px;
	}
	
	.hl2go-contact-form {
		padding: 20px;
	}
	
	.hl2go-contact-form-title {
		font-size: 24px;
	}
}

