@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.rlq-form-container,
.rlq-form-container * {
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

.rlq-form-container {
	width: 100%;
	background-color: #0c1322;
	background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
	                  linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
	background-size: 20px 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 28px 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.rlq-form-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.rlq-form-header .rlq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.rlq-title {
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.rlq-subtitle {
	font-size: 13px;
	color: #94a3b8;
	line-height: 1.5;
	margin: 0 0 24px 0;
}

.rlq-lead-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.rlq-form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.rlq-form-row-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	width: 100%;
}

.rlq-label {
	font-size: 11px;
	font-weight: 800;
	color: #94a3b8;
	letter-spacing: 0.05em;
}

.rlq-input {
	width: 100%;
	background-color: #080d1a !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 12px !important;
	padding: 12px 16px !important;
	color: #ffffff !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	outline: none !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

/* FIX: BROWSER AUTOFILL WHITE BACKGROUND REMOVAL */
.rlq-input:-webkit-autofill,
.rlq-input:-webkit-autofill:hover, 
.rlq-input:-webkit-autofill:focus, 
.rlq-input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 1000px #080d1a inset !important;
	-webkit-text-fill-color: #ffffff !important;
	transition: background-color 5000s ease-in-out 0s !important;
}

.rlq-input::placeholder {
	color: #475569;
	font-weight: 400;
}

.rlq-input:focus {
	border-color: #25D366 !important;
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15) !important;
}

.rlq-textarea {
	min-height: 80px;
	max-height: 160px;
	resize: vertical;
	line-height: 1.5;
}

.rlq-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	background: #25D366;
	border: none;
	border-radius: 14px;
	padding: 14px 20px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	margin-top: 6px;
	transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.rlq-submit-btn:hover {
	background: #1fc157;
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.rlq-submit-btn:active {
	transform: scale(0.99);
}

.rlq-btn-icon {
	width: 16px;
	height: 16px;
}

@media (max-width: 480px) {
	.rlq-form-row-split {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.rlq-form-container {
		padding: 20px 16px;
	}
	.rlq-title {
		font-size: 19px;
	}
}