.jpp-membership-wrapper {
	max-width: 640px;
	margin: 0 auto;
}

.jpp-membership-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 20px;
	background: #fff;
	padding: 24px;
	border-radius: 10px;
	border: 1px solid #e2e2e2;
}

.jpp-field {
	display: flex;
	flex-direction: column;
}

.jpp-field-full {
	grid-column: 1 / -1;
}

.jpp-field label {
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
	color: #222;
}

.jpp-field input[type="text"],
.jpp-field input[type="email"],
.jpp-field input[type="tel"],
.jpp-field input[type="number"],
.jpp-field input[type="file"],
.jpp-field select,
.jpp-field textarea {
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
}

.jpp-field textarea {
	resize: vertical;
}

.jpp-form-section-title {
	margin: 8px 0 -4px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e2e2e2;
	font-size: 16px;
	color: #222;
}

.jpp-form-section-title:first-of-type {
	margin-top: 0;
}

.required {
	color: #c0392b;
}

.jpp-error {
	color: #c0392b;
	font-size: 12px;
	margin-top: 4px;
	min-height: 14px;
}

.jpp-field-note {
	color: #6b7280;
	font-size: 12px;
	margin: 4px 0 0;
	line-height: 1.4;
}

.jpp-submit-btn {
	background: #c0392b;
	color: #fff;
	border: none;
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.jpp-submit-btn:hover {
	background: #a93226;
}

.jpp-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.jpp-form-message {
	padding: 12px 16px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 14px;
}

.jpp-form-message.success {
	background: #e6f7ea;
	color: #1a7a34;
	border: 1px solid #b7e6c2;
}

.jpp-form-message.error {
	background: #fdeaea;
	color: #b3261e;
	border: 1px solid #f4bcbc;
}

@media (max-width: 600px) {
	.jpp-membership-form {
		grid-template-columns: 1fr;
	}
}
