.search-form {
	display: flex;
	gap: 10px;
}

.search-form input[type="text"] {
	width: 500px;
	height: 52px;
	line-height: 52px;
	padding-left: 20px;
	border: 1px solid #00205C;
}

.search-form-search-submit {
	font-weight: bold;
	font-size: 18px;
	text-transform: uppercase;
	height: 52px;
	line-height: 52px;
	color: #FFFFFF;
	background: rgba(0, 32, 92, 0.8);
	outline: none;
	border: none;
	width: 100px;
	cursor: pointer;
	transition: 0.3s;
}

.search-form-search-submit:hover {
	color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
	.search-form input[type="text"] {
		width: 220px;
	}
}