/**
 * SMD Contact Form - Styles
 * Version: 3.0
 */

/* Form container */
#smd-contact-form {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

/* Labels */
#smd-contact-form label {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	display: block;
	margin-bottom: 5px;
}

/* Input fields */
#smd-contact-form input[type="text"],
#smd-contact-form input[type="email"],
#smd-contact-form input[type="tel"],
#smd-contact-form textarea,
#smd-contact-form select {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

/* Focus states */
#smd-contact-form input[type="text"]:focus,
#smd-contact-form input[type="email"]:focus,
#smd-contact-form input[type="tel"]:focus,
#smd-contact-form textarea:focus,
#smd-contact-form select:focus {
	border-color: #0073aa;
	outline: none;
	box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

/* Textarea */
#smd-contact-form textarea {
	min-height: 120px;
	resize: vertical;
}

/* File input */
#smd-contact-form input[type="file"] {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	padding: 8px 0;
}

/* Submit button */
#smd-contact-form input[type="submit"] {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	font-weight: 600;
	background-color: #0073aa;
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

#smd-contact-form input[type="submit"]:hover {
	background-color: #005a87;
}

#smd-contact-form input[type="submit"]:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

/* Form paragraphs */
#smd-contact-form p {
	margin-bottom: 15px;
}

/* Loading indicator */
#smd-loading {
	display: none;
	font-size: 16px;
	font-weight: 600;
	color: #0073aa;
	margin-top: 10px;
	padding: 10px;
	text-align: center;
}

/* Response messages */
#smd-response {
	margin-top: 20px;
	font-size: 14px;
}

/* Small helper text */
#smd-contact-form small {
	display: block;
	margin-top: 5px;
	color: #666;
	font-size: 12px;
}

/* Required field indicator */
#smd-contact-form label span {
	color: #d63638;
}

/* Responsive design */
@media screen and (max-width: 600px) {
	#smd-contact-form {
		padding: 0 15px;
	}
	
	#smd-contact-form input[type="submit"] {
		width: 100%;
	}
}

/* Admin settings page test button */
.wrap #smd-test-button {
	padding: 8px 16px;
	font-size: 14px;
}

.wrap #smd-test-response {
	max-width: 600px;
}
