/* Base Styles */
body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	margin: 0;
	padding: 0;
	background-color: #f5f5f5;
}

.container {
	max-width: 600px;
	margin: 20px auto;
	padding: 20px;
	background-color: #fff;
}

/* Logo and Header */
.logo {
	display: flex;
	justify-content:center;
	margin-bottom: 20px;
}

.logo-text {
	color: #0070c0;
	font-weight: bold;
	font-size: 1.5rem;
}

.logo-subtext {
	color: #333;
	font-size: 0.8rem;
}

/* Instructions */
.instructions {
	margin-bottom: 20px;
	font-size:13px;
}

.instruction-point {
	margin-bottom: 15px;
}

/* Form Elements */
.form-section {
	margin-bottom: 20px;
}

.required {
	color: #e74c3c;
	margin-right: 5px;
}

.form-group {
	margin-bottom: 15px;
}

label {
	display: block;
	margin-bottom: 8px;
	font-size:14px;
	font-weight:bold;
	color:rgb(137, 137, 137)
}

input[type="text"],
input[type="email"],
textarea,
select {
	width: 100%;
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 13px;
	box-sizing: border-box;
}

textarea {
	height: 150px;
	resize: vertical;
}

.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 15px;
}

.option-button {
	padding: 5px;
	background-color: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	flex: 1;
	min-width: 150px;
	text-align: center;
	font-size:13px;
}

.option-button.selected {
	background-color: #e6f7ff;
	border-color: #1890ff;
	color: #1890ff;
}

.char-counter {
	text-align: right;
	font-size: 0.8rem;
	color: #666;
}

.submit-btn {
	background-color: #5bb9f0;
	color: white;
	border: none;
	border-radius: 20px;
	padding: 10px 30px;
	font-size: 1rem;
	cursor: pointer;
	float: right;
	margin-top: 20px;
}

.submit-btn:hover {
	background-color: #4a9cd9;
}

.recaptcha-container {
	margin: 20px 0;
	display: flex;
	justify-content: right;
}

/* Error Messages */
.error-message {
	color: #e74c3c;
	font-size: 0.85rem;
	margin-top: 5px;
	display: none;
}

		/* Country input with X button */
.country-container {
	position: relative;
}

.country-clear {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #999;
	font-weight: bold;
}

.form-footer {
	text-align: center;
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
	font-size: 10px;
	color: #666;
}

.footer-links {
	margin-top: 10px;
}

.footer-links a {
	color: #0070c0;
	text-decoration: none;
}

.powered-by img {
	height: 20px;
	margin-left: 5px;
}

.title
{
	text-align: center;
	font-size: 15px;
	font-weight: bold;
}

@media (max-width: 768px) {
	.logo-content {
		flex-direction: column;
		align-items: center;
	}
	.tagline {
		border-left: none;
		margin-left: 0;
		padding-left: 0;
		text-align: center;
		margin-top: 10px;
	}
}