/*
 * Plugin: StickEasy Protected Contact Form
 * File: spcf-style.css
 */
.spcf-input {
	width: 100%;
	padding: 12px;
	margin-top: 8px;
	margin-bottom: 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 16px;
}

.spcf-textarea {
	width: 100%;
	padding: 12px;
	margin-top: 8px;
	margin-bottom: 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 16px;
}

.spcf-button {
	background-color: #007BFF;
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.spcf-button:hover {
	background-color: #0069d9;
}

#spcf-response {
	margin-top: 12px;
	padding: 0;
	font-weight: 600;
	border-radius: 6px;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-align: center;
}

.spcf-success-message {
	background-color: #d4edda;
	color: #155724;
	padding: 15px 20px;
	border: 1px solid #c3e6cb;
	font-size: 1.1em;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.spcf-error-message {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	font-size: 1.1em;
}

.spcf-honeypot {
	position: absolute !important;
	left: -9999px !important;
	top: auto !important;
	display: block !important;
	visibility: hidden !important;
}