.tourRegisterForm {
	max-width: 600px;
	margin: auto;
	padding: 15px;
	box-sizing: border-box;
}

.tourRegisterForm h3 {
	margin-top: 20px;
	font-size: 1rem;
}

.tourRegisterForm input[type="text"],
.tourRegisterForm input[type="email"],
.tourRegisterForm input[type="date"],
.tourRegisterForm textarea {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	box-sizing: border-box;
}

.tourRegisterForm textarea {
	resize: vertical;
}

.tourRegisterForm .row-flex {
	display: flex;
	gap: 10px;
}

.tourRegisterForm .row-flex input {
	flex: 1;
}

.tourRegisterForm label {
	display: block;
	margin: 5px 0;
	font-weight: normal;
}

.tourRegisterForm input[type="submit"] {
	padding: 12px 25px;
	background: #1e2b3c;
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s ease;
}

.tourRegisterForm input[type="submit"]:hover {
	background: #2f4a68;
}

input[type="date"] {
	font-size: 16px;
}

@media (max-width: 600px) {
	.tourRegisterForm .row-flex {
		flex-direction: column;
	}
}
