.wp-idenfy-title {
	margin: 12px 0 8px;
	padding: 0;
}
.wp-idenfy-header-logo {
	display: block;
	height: 44px;
	width: auto;
}
.wp-idenfy-container {
	margin: 20px 0 40px;
}
.wp-idenfy-container .nav-tab-wrapper {
	margin-bottom: 0;
	border-bottom: 1px solid #c3c4c7;
}
.tab-panel {
	display: none;
}
.tab-panel.is-active {
	display: block;
	padding-top: 60px;
}
.wp-idenfy-card-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 0;
	align-items: stretch;
}
.wp-idenfy-card-form {
	padding-left: 0;
	padding-right: 40px;
}
.wp-idenfy-form-box {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
	padding: 40px;
	max-width: 720px;
}
.wp-idenfy-form-box h2 {
	margin-top: 0;
	margin-bottom: 8px;
}
.wp-idenfy-form-box .description {
	margin-bottom: 24px;
}
.wp-idenfy-card-image {
	padding: 0 20px 0 40px;
	border-left: 1px solid #c3c4c7;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 360px;
}
.wp-idenfy-card-image img {
	max-width: 100%;
	max-height: 200px;
	height: auto;
}
.wp-idenfy-field {
	margin-bottom: 20px;
}
.wp-idenfy-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #1d2327;
}
.wp-idenfy-field input[type="text"] {
	width: 100%;
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #dcdcde;
	background: #fff;
	box-sizing: border-box;
}
.wp-idenfy-field input[type="text"]:focus,
.wp-idenfy-field input[type="number"]:focus,
.wp-idenfy-field textarea:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	outline: none;
}
.wp-idenfy-field input[type="number"] {
	width: 100%;
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #dcdcde;
	background: #fff;
	box-sizing: border-box;
}
.wp-idenfy-secret-wrap {
	position: relative;
}
.wp-idenfy-secret-wrap input[type="password"],
.wp-idenfy-secret-wrap input[type="text"] {
	width: 100%;
	padding: 10px 44px 10px 14px;
	border-radius: 8px;
	border: 1px solid #dcdcde;
	background: #fff;
	box-sizing: border-box;
}
.wp-idenfy-secret-wrap input:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	outline: none;
}
.wp-idenfy-secret-toggle {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	color: #646970;
}
.wp-idenfy-secret-toggle:hover {
	color: #1d2327;
}
.wp-idenfy-secret-toggle .dashicons {
	width: 20px;
	height: 20px;
	font-size: 20px;
}
.wp-idenfy-cred-status {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	padding: 10px 14px;
	border-radius: 8px;
	font-weight: 600;
	background: #f6f7f7;
}
.wp-idenfy-cred-status .dashicons {
	width: 20px;
	height: 20px;
	font-size: 20px;
	flex: 0 0 auto;
}
.wp-idenfy-cred-status.is-valid {
	background: #edfaef;
	color: #46b450;
}
.wp-idenfy-cred-status.is-invalid,
.wp-idenfy-cred-status.is-error,
.wp-idenfy-cred-status.is-empty {
	background: #fcf0f1;
	color: #d63638;
}
.wp-idenfy-cred-status.is-testing {
	background: #f0f6fc;
	color: #2271b1;
}
.wp-idenfy-cred-status.is-testing .dashicons {
	animation: wp-idenfy-spin 1s linear infinite;
}
@keyframes wp-idenfy-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}
.wp-idenfy-field input[type="color"] {
	width: 60px;
	height: 40px;
	padding: 3px;
	border-radius: 8px;
	border: 1px solid #dcdcde;
	background: #fff;
	cursor: pointer;
}
.wp-idenfy-field textarea {
	width: 100%;
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #dcdcde;
	background: #fff;
	box-sizing: border-box;
	font-family: Consolas, Monaco, monospace;
	font-size: 13px;
	resize: vertical;
}
.wp-idenfy-field-code .CodeMirror {
	border-radius: 8px;
	border: 1px solid #dcdcde;
	font-family: Consolas, Monaco, "Courier New", monospace;
	font-size: 13px;
	line-height: 1.5;
	height: auto;
	min-height: 280px;
	overflow: hidden;
}
.wp-idenfy-field-code .CodeMirror-focused {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
}
.wp-idenfy-field-code .CodeMirror-gutters {
	border-right: 1px solid #f0f0f1;
	background: #fafafa;
}
.wp-idenfy-field-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}
.wp-idenfy-field-row > .wp-idenfy-field {
	flex: 1;
	margin-bottom: 0;
}
.wp-idenfy-preview-area {
	flex-direction: column;
	gap: 24px;
}
.wp-idenfy-cust-intro {
	margin: 0 0 16px;
}
.wp-idenfy-cust-switch {
	display: inline-flex;
	gap: 4px;
	margin-bottom: 24px;
	padding: 4px;
	background: #f0f0f1;
	border-radius: 8px;
}
.wp-idenfy-cust-switch-btn {
	margin: 0;
	padding: 8px 20px;
	border: none;
	background: transparent;
	color: #50575e;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	border-radius: 6px;
	cursor: pointer;
}
.wp-idenfy-cust-switch-btn:hover {
	color: #1d2327;
}
.wp-idenfy-cust-switch-btn.is-active {
	background: #fff;
	color: #1d2327;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.wp-idenfy-cust-section {
	display: none;
}
.wp-idenfy-cust-section.is-active {
	display: block;
}
.wp-idenfy-cust-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 16px;
	font-size: 16px;
}
.wp-idenfy-preview-heading {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #646970;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.shortcode-copy {
	cursor: pointer;
	font-size: 1.1em;
	padding: 4px 8px;
	display: inline-block;
}
.flash {
	animation: wp-idenfy-flash 0.5s;
}
@keyframes wp-idenfy-flash {
	from { background: rgb(37, 197, 223); }
	to   { background: transparent; }
}
.wp-idenfy-attr-list {
	margin: 8px 0 16px 18px;
	list-style: disc;
}
.wp-idenfy-attr-list li {
	margin-bottom: 4px;
	color: #1d2327;
}
pre.wp-idenfy-code {
	background: #f6f7f7;
	border: 1px solid #dcdcde;
	border-radius: 8px;
	padding: 12px 14px;
	overflow-x: auto;
	font-size: 12px;
	line-height: 1.5;
	margin: 8px 0 12px;
}
pre.wp-idenfy-code code {
	background: transparent;
	padding: 0;
	font-size: 12px;
}
.wp-idenfy-form-box h4,
.wp-idenfy-card-docs h4 {
	margin-top: 24px;
	margin-bottom: 8px;
}
.wp-idenfy-card-docs {
	padding: 0 20px 0 40px;
	border-left: 1px solid #c3c4c7;
	color: #1d2327;
	font-size: 13px;
	line-height: 1.5;
}
.wp-idenfy-card-docs h3 {
	margin-top: 24px;
	margin-bottom: 8px;
}
.wp-idenfy-card-docs h3:first-child {
	margin-top: 0;
}
.wp-idenfy-card-docs p {
	margin: 6px 0;
}
.wp-idenfy-card-docs p code {
	background: #f0f0f1;
	padding: 1px 6px;
	border-radius: 4px;
	font-size: 12px;
}
@media (max-width: 782px) {
	.wp-idenfy-card-grid {
		grid-template-columns: 1fr;
	}
	.wp-idenfy-card-form {
		padding-right: 0;
	}
	.wp-idenfy-card-image {
		padding: 30px 0 0;
		border-left: none;
		border-top: 1px solid #c3c4c7;
	}
	.wp-idenfy-form-box {
		max-width: none;
	}
}
