.jobs {
	text-align: center;
	padding: 150px 75px;
}

.jobs input, .jobs textarea, .jobs select {
	padding: 5px;
	resize: none;
	margin: 15px 5px;
}

.jobs textarea {
	width: 80%;
}

.jobs input[id=name], .jobs input[id=address], .jobs input[id=city], .jobs select[id=state] {
	width: 15%;	
}

.jobs input[id=email], .jobs input[id=phone] , .jobs input[id=position], .jobs select[id=worktime] {
	width: 19%;
}

.jobs input::placeholder {
	/* Change placeholder Color */
}

.jobs hr {
	border: 1px solid #1f5ccc;
	margin: 25px;
}

.jobs input[type=submit] {
	border: none;
	width: 80%;
	padding: 15px;
	background-color: #1f5ccc;
	color: #fee4be;
}

@media screen and (max-width: 750px) {
	.jobs {
		padding: 75px 15px;
	}
	.jobs input, textarea, select {
		display: block;
		width: 100% !important;
	}
}