
.contact-box {
	max-width: 720px;
	margin: 30px auto;
	padding: 0 20px 20px 20px;
}

.inline-box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
}
.inline-form {
	flex: 1 1 320px;
}

.right-inline {
	margin-left: 0;
}

.form-label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
}

.form-field {
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	height: 40px;
	border: 1px solid #cfd6e4;
	border-radius: 6px;
	background-color: #fbfcff;
	color: #1c2430;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-text-area {
	width: 100%;
	min-height: 140px;
	padding: 10px 12px;
	border: 1px solid #cfd6e4;
	border-radius: 6px;
	background-color: #fbfcff;
	color: #1c2430;
	outline: none;
	resize: none;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field:focus,
.form-text-area:focus {
	border-color: #558fed;
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(85, 143, 237, 0.2);
	outline: none;
}

.form-field::placeholder,
.form-text-area::placeholder {
	color: #8a96a8;
}

.contact-form {
	margin-left: 8px;
}

.submit {
	background-color: #558fed;
	border: none;
	color: white;
	padding: 12px 28px;
	margin-top: 16px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
}

@media all and (max-width:800px){
	.inline-box{
		margin: 0;
	}
}
