/**
 * Professional Template - Business-focused design with elegant styling
 */

.boosty-template-professional .boosty-contact-form {
	background: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	padding: 40px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.boosty-template-professional .boosty-field {
	margin-bottom: 0px;
}

.boosty-template-professional .boosty-field label {
	display: block;
	font-weight: 500;
	margin-bottom: 8px;
	color: #374151;
	font-size: 14px;
}

.boosty-template-professional .boosty-field input[type="text"],
.boosty-template-professional .boosty-field input[type="email"],
.boosty-template-professional .boosty-field input[type="tel"],
.boosty-template-professional .boosty-field input[type="date"],
.boosty-template-professional .boosty-field input[type="time"],
.boosty-template-professional .boosty-field input[type="number"],
.boosty-template-professional .boosty-field textarea,
.boosty-template-professional .boosty-field select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 14px;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
	color: #111827;
}

.boosty-template-professional .boosty-field input:focus,
.boosty-template-professional .boosty-field textarea:focus,
.boosty-template-professional .boosty-field select:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.boosty-template-professional .boosty-submit {
	background: #2563eb;
	color: #fff;
	border: none;
	padding: 14px 28px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s;
}

.boosty-template-professional .boosty-submit:hover {
	background: #1d4ed8;
}

.boosty-template-professional .boosty-submit:active {
	background: #1e40af;
}


