
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
	width: 100%;
	height: 45px;
	font-family: var(--font-family-main);
	font-weight: 400;
	font-size: 18px;
	color: white;
	border: 2px solid #BABABA;
	border-radius: 10px;
	padding: 15px;
	background-color: #F4F4F4;
	
}
::-webkit-input-placeholder {
   color: var(--color-fourth);
}

.contact-form textarea {
	resize: none;
	height: 200px;
}

.contact-form {
	width: 100%;
	max-width: 500px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	gap: 40px;
}

.contact-form-fields {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 30px;
}

.form-field-container {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;

	label {
		font-weight: 700;
		margin-bottom: 10px;
	}
}