/* Block root – scoped so it doesn't fight with the theme */
	.cert-verify {
	max-width: 420px;
	margin: 0 auto;
	padding: 48px 16px 80px;
	text-align: center;
	/* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif; */
	font-family: Poppins, sans-serif;
	color: #111827;
	background-color: #ffffff;

	}

	.cert-verify__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	}

	/* Brand header */
	.cert-verify__brand {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 40px;
	}

	.cert-verify__brand-logo {
	display: block;
	width: 95px;
	height: auto;
	}

	.cert-verify__brand-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	}

	.cert-verify__brand-name {
	font-weight: 700;
	}

	.cert-verify__brand-tagline {
	font-size: 1.4rem;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	color: rgb(24,24,27);
	margin-top: 2px;
	white-space: nowrap;
	}

	/* Title + description */
	.cert-verify__title {
	font-size: 2rem;
	line-height: 1.15;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: 2px;
	}

	.cert-verify__title-line {
	display: block;
	}

	.cert-verify__description {
	font-size: 1.1rem;
	color: #6b7280;
	margin-bottom: 24px;
	}

	/* Form */
	.cert-verify__form {
	width: 100%;
	}

	.cert-verify__field {
	margin-bottom: 20px;
	text-align: left;
	}

	.cert-verify__label {
	display: none; /* placeholder acts as label visually */
	font-size: 0.85rem;
	margin-bottom: 6px;
	color: #4b5563;
	}

	.cert-verify__input {
	width: 100%;
	display: block;
	padding: 14px 14px;
	border-radius: 10px;
	border: 1px solid #e5e7eb;
	font-size: 0.95rem;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	background-color: #ffffff;
	}

	.cert-verify__input::placeholder {
	color: #9ca3af;
	}

	.cert-verify__input:focus {
	border-color: rgb(24,24,27);
	box-shadow: 0 0 0 1px #fee2e2;
	}

	.cert-verify__button {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	padding: 14px 16px;
	border-radius: 10px;
	border: none;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	background-color: rgb(24,24,27);
	color: #ffffff;
	/*transition: background-color 0.15s ease, transform 0.05s ease,
		box-shadow 0.15s ease;
	box-shadow: 0 8px 20px rgba(239, 68, 68, 0.25);*/
	}

	.cert-verify__button:hover {
	background-color: rgb(24,24,27);
	}

	.cert-verify__button:active {
	transform: translateY(1px);
	box-shadow: 0 5px 14px rgba(239, 68, 68, 0.3);
	background-color: rgb(24, 24, 27);
	}

	.cert-verify__button--loading {
	opacity: 0.8;
	cursor: wait;
	}

	.cert-verify__data {
	margin: 50px 0 30px;
	border-top: 1px solid rgb(128,128,128);
	border-bottom: 1px solid rgb(128,128,128);
	}

	.cert-verify__data table {
	font-size: 15px;
	line-height: 18px;
	border: none;
	text-align: left;
	margin: 13px 0px;
	}

	.cert-verify__data table td {
	border-bottom: none;
	padding: 0.5rem 1rem;
	}

	/* Status message (error/success) */
	.cert-verify__status {
	display: none; /* JS will toggle this */
	margin-top: 18px;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	}

	.cert-verify__status--visible {
	display: inline-flex;
	}

	.cert-verify__status-icon {
	width: 26px;
	height: 26px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
	}

	.cert-verify__status-icon-symbol {
	position: relative;
	top: -1px;
	}

	.cert-verify__status-text {
	font-weight: 500;
	}

	.cert-verify__status--error, .cert-verify__status--required {
	color: #ef4444;
	}

	.cert-verify__status--success {
	color: #16a34a;
	}

	/* Trust logos */
	.cert-verify__trust {
	margin-top: 40px;
	}

	.cert-verify__trust-text {
	font-size: 1rem;
	color: #6b7280;
	margin-bottom: 18px;
	}

	.cert-verify__trust-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	}

	.cert-verify__trust-logo {
	max-height: 100%;
	width: auto;
	opacity: 0.8;
	}

	#cert-verify__button .spinner {
	border: 2px solid #f3f3f3;
	border-top: 2px solid rgb(24,24,27);
	border-radius: 50%;
	width: 16px;
	height: 16px;
	animation: spin 1s linear infinite;
	margin-left: 10px;
	vertical-align: middle;
	}

	@keyframes spin {
		0% { transform: rotate(0deg); }
		100% { transform: rotate(360deg); }
	}

	@media (max-width: 480px) {
	.cert-verify {
		padding-top: 32px;
	}

	.cert-verify__brand {
		flex-direction: column;
		gap: 6px;
	}

	.cert-verify__brand-text {
		align-items: center;
	}

	.cert-verify__brand-tagline {
		white-space: normal;
		text-align: center;
	}

	.cert-verify__trust-logos {
		gap: 24px;
	}
	}