/**
 * WooCommerce VersaPay Gateway - Block Checkout Styles
 *
 * @package WooVersaPayGateway
 */

/* Form container */
.wc-versapay-blocks-form {
	padding: 8px 0;
}

/* Individual field wrapper */
.wc-versapay-field {
	margin-bottom: 16px;
}

/* Labels */
.wc-versapay-field label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #1e1e1e;
}

/* Input fields */
.wc-versapay-field input {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	font-size: 16px;
	line-height: 1.5;
	box-sizing: border-box;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wc-versapay-field input:focus {
	border-color: #007cba;
	box-shadow: 0 0 0 1px #007cba;
	outline: none;
}

.wc-versapay-field input::placeholder {
	color: #a7aaad;
}

/* Card number - monospace */
#versapay-block-card-number {
	font-family: 'Courier New', Courier, monospace;
	letter-spacing: 1.5px;
}

/* Row for side-by-side fields (Expiry + CVV) */
.wc-versapay-field-row {
	display: flex;
	gap: 16px;
}

.wc-versapay-field-half {
	flex: 1;
}

/* Responsive - stack on small screens */
@media (max-width: 480px) {
	.wc-versapay-field-row {
		flex-direction: column;
		gap: 0;
	}
}
