/**
 * Meetempo Client Proof & Validate — Front-end styles.
 *
 * @package WP_Proof_Validate
 */

/* Honeypot — invisible to humans */
.wppv-hp {
	position: absolute;
	left: -9999px;
	top: -9999px;
	height: 0;
	width: 0;
	overflow: hidden;
	opacity: 0;
}

/* Form wrapper */
.wppv-form-wrapper {
	max-width: 480px;
	margin: 2em 0;
	padding: 1.5em;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fafafa;
}

/* Fields */
.wppv-field {
	margin-bottom: 1em;
}

.wppv-field label {
	display: block;
	margin-bottom: 0.4em;
	font-weight: 600;
}

.wppv-input {
	display: block;
	width: 100%;
	padding: 0.6em 0.8em;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 1em;
	box-sizing: border-box;
}

.wppv-input:focus {
	border-color: #0073aa;
	outline: none;
	box-shadow: 0 0 0 1px #0073aa;
}

/* Submit button */
.wppv-button {
	display: inline-block;
	padding: 0.7em 1.5em;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 3px;
	font-size: 1em;
	cursor: pointer;
	transition: background 0.2s ease;
}

.wppv-button:hover {
	background: #005a87;
}

.wppv-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Messages */
.wppv-message {
	padding: 1em 1.2em;
	border-radius: 4px;
	margin-bottom: 1em;
}

.wppv-message p {
	margin: 0;
}

.wppv-message--success {
	background: #ecf7ed;
	border: 1px solid #46b450;
	color: #2e7d32;
}

.wppv-message--error {
	background: #fbeaea;
	border: 1px solid #dc3232;
	color: #b71c1c;
}

.wppv-message--info {
	background: #e8f0fe;
	border: 1px solid #0073aa;
	color: #01579b;
}
