/**
 * Contact Form Styles
 * 
 * @package Fast
 */

.fast-contact-form-wrapper {
	max-width: 600px;
	margin: 2rem auto;
}

.fast-contact-form {
	background: #fff;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fast-contact-form .form-group {
	margin-bottom: 1.5rem;
}

.fast-contact-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
}

.fast-contact-form .required {
	color: #dc3545;
}

.fast-contact-form input[type="text"],
.fast-contact-form input[type="email"],
.fast-contact-form textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

.fast-contact-form input[type="text"]:focus,
.fast-contact-form input[type="email"]:focus,
.fast-contact-form textarea:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.fast-contact-form textarea {
	resize: vertical;
	min-height: 150px;
}

.fast-contact-form .submit-button {
	background: #007bff;
	color: #fff;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.fast-contact-form .submit-button:hover {
	background: #0056b3;
}

.fast-contact-form .submit-button:disabled {
	background: #6c757d;
	cursor: not-allowed;
	opacity: 0.6;
}

.fast-contact-form .form-response {
	padding: 1rem;
	margin-bottom: 1.5rem;
	border-radius: 4px;
	font-weight: 500;
}

.fast-contact-form .form-response.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.fast-contact-form .form-response.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.fast-contact-form-wrapper {
		margin: 1rem;
	}
	
	.fast-contact-form {
		padding: 1.5rem;
	}
}
