.pi-activate {
		--pi-brand: #f67f3e;
		--pi-brand-dark: #e86a24;
		--pi-ink: #1f2937;
		--pi-muted: #6b7280;
		--pi-line: #e5e7eb;
		--pi-soft: #fff7f2;
		--pi-danger: #b42318;
		--pi-danger-bg: #fef3f2;
		--pi-radius: 14px;
		overflow: hidden;
		width: 100%;
		min-height: 100%;
	}

	.pi-activate .pi-card {
		max-width: 460px;
		margin: 2.5rem auto;
		border-radius: 20px;
		box-shadow: 0 18px 50px rgba(31, 41, 55, 0.12);
		border: 1px solid rgba(255, 255, 255, 0.55);
		background: rgba(255, 255, 255, 0.96);
	}

	.pi-activate .pi-content {
		padding: 2rem 1.5rem 1.75rem;
	}

	.pi-eyebrow {
		margin: 0 0 0.35rem;
		font-size: 1.1rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--pi-brand);
	}

	.pi-activate .cadastro-heading {
		margin: 0 0 0.75rem;
		font-size: 1.65rem;
		line-height: 1.25;
		color: var(--pi-ink);
	}

	.pi-instruction {
		display: none;
		margin: 0;
		color: var(--pi-muted);
		font-size: 1.29rem;
		line-height: 1.5;
	}

	.pi-instruction.is-visible,
	.pi-instruction[style*="display: block"],
	#instructionOne[style*="display: block"] {
		display: block !important;
	}

	.pi-email-chip {
		display: inline-flex;
		align-items: center;
		margin-top: 0.85rem;
		padding: 0.55rem 0.85rem;
		border-radius: 999px;
		background: var(--pi-soft);
		color: var(--pi-brand-dark);
		font-weight: 700;
		font-size: 0.95rem;
		letter-spacing: 0.01em;
		word-break: break-all;
	}

	.pi-steps-bar {
		display: flex;
		align-items: flex-start;
		gap: 0.15rem;
		margin: 1.35rem 0 0;
	}

	.pi-steps {
		display: none;
		list-style: none;
		flex: 1;
		min-width: 0;
		margin: 0;
		padding: 0;
		gap: 0.35rem;
		justify-content: space-between;
	}

	.pi-steps.is-visible {
		display: flex;
	}

	.pi-back-btn {
		display: none;
		flex-shrink: 0;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 28px;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 8px;
		background: transparent;
		color: #9ca3af;
		cursor: pointer;
		transition: color 0.15s ease, background-color 0.15s ease;
	}

	.pi-back-btn.is-visible {
		display: inline-flex;
	}

	.pi-back-btn:hover,
	.pi-back-btn:focus {
		color: var(--pi-ink);
		background: var(--pi-soft);
		outline: none;
	}

	.pi-back-icon {
		width: 20px;
		height: 20px;
		fill: currentColor;
	}

	.pi-step {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.35rem;
		font-size: 1rem;
		font-weight: 600;
		color: #9ca3af;
		text-align: center;
		position: relative;
	}

	.pi-step-index {
		width: 28px;
		height: 28px;
		border-radius: 50%;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 2px solid var(--pi-line);
		background: #fff;
		color: #9ca3af;
	}

	.pi-step-label {
		line-height: 1.2;
	}

	.pi-step.is-active {
		color: var(--pi-brand-dark);
	}

	.pi-step.is-active .pi-step-index {
		border-color: var(--pi-brand);
		background: var(--pi-brand);
		color: #fff;
		box-shadow: 0 0 0 4px rgba(246, 127, 62, 0.18);
	}

	.pi-step.is-done {
		color: var(--pi-ink);
	}

	.pi-step.is-done .pi-step-index {
		border-color: var(--pi-brand);
		background: var(--pi-soft);
		color: var(--pi-brand-dark);
	}

	.pi-form {
		margin-top: 1.5rem;
	}

	.pi-field-group {
		margin-bottom: 1rem;
	}

	.pi-label {
		display: block;
		margin-bottom: 0.4rem;
		font-size: 1.1rem;
		font-weight: 600;
		color: var(--pi-ink);
	}

	.pi-input,
	#customerIdForm,
	#passwordIdForm,
	#passwordConfirmIdForm,
	#identificationIdForm,
	#tokenIdForm {
		height: 48px;
		border-radius: 12px !important;
		border: 1px solid var(--pi-line);
		box-shadow: none;
		transition: border-color 0.15s ease, box-shadow 0.15s ease;
	}

	.pi-input:focus,
	#customerIdForm:focus,
	#passwordIdForm:focus,
	#passwordConfirmIdForm:focus,
	#identificationIdForm:focus,
	#tokenIdForm:focus {
		border-color: var(--pi-brand);
		box-shadow: 0 0 0 4px rgba(246, 127, 62, 0.15);
		outline: none;
	}

	.pi-input.is-invalid,
	#customerIdForm.is-invalid,
	#passwordIdForm.is-invalid,
	#passwordConfirmIdForm.is-invalid,
	#identificationIdForm.is-invalid,
	#tokenIdForm.is-invalid {
		border-color: var(--pi-danger) !important;
		background: #fffafa;
		box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12);
	}

	.pi-input.is-invalid:focus,
	#customerIdForm.is-invalid:focus,
	#passwordIdForm.is-invalid:focus,
	#passwordConfirmIdForm.is-invalid:focus,
	#identificationIdForm.is-invalid:focus,
	#tokenIdForm.is-invalid:focus {
		border-color: var(--pi-danger) !important;
		box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.16);
	}

	.pi-password-wrap {
		position: relative;
	}

	.pi-password-wrap .pi-input,
	.pi-password-wrap #passwordIdForm,
	.pi-password-wrap #passwordConfirmIdForm {
		padding-right: 48px;
	}

	.pi-password-toggle {
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		width: 36px;
		height: 36px;
		border: none;
		background: transparent;
		color: var(--pi-muted);
		cursor: pointer;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 8px;
		padding: 0;
	}

	.pi-password-toggle:hover {
		color: var(--pi-brand-dark);
		background: var(--pi-soft);
	}

	.pi-eye-icon {
		width: 20px;
		height: 20px;
		fill: currentColor;
		display: none;
	}

	.pi-password-toggle .pi-eye-closed {
		display: block;
	}

	.pi-password-toggle.is-visible .pi-eye-closed {
		display: none;
	}

	.pi-password-toggle.is-visible .pi-eye-open {
		display: block;
	}

	#identificationIdForm[readonly] {
		background: #f9fafb;
		color: var(--pi-muted);
	}

	.pi-input-otp {
		text-align: center;
		font-size: 1.45rem;
		font-weight: 700;
		letter-spacing: 0.42em;
		padding-left: 0.85em;
	}

	.pi-field-hint {
		margin: 0.4rem 0 0;
		color: var(--pi-muted);
	}

	.pi-alert {
		display: none;
		margin: 0 0 0.85rem;
		padding: 0.7rem 0.85rem;
		border-radius: 10px;
		line-height: 1.4;
	}

	.pi-alert-error {
		background: var(--pi-danger-bg);
		color: var(--pi-danger);
		border: 1px solid #fecdca;
	}

	.pi-actions {
		margin-top: 0.35rem;
	}

	#submitForm.pi-submit,
	#btClosePopUp.pi-submit {
		height: 48px;
		margin-top: 0.35rem;
		border-radius: 12px !important;
		border: none;
		background: var(--pi-brand);
		border-color: var(--pi-brand);
		font-weight: 700;
		letter-spacing: 0.01em;
		transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
	}

	#submitForm.pi-submit:hover:not(:disabled),
	#btClosePopUp.pi-submit:hover {
		background: var(--pi-brand-dark);
		border-color: var(--pi-brand-dark);
	}

	#submitForm.pi-submit.is-disabled,
	#submitForm.pi-submit:disabled {
		background: #d1d5db !important;
		border-color: #d1d5db !important;
		opacity: 1;
		cursor: not-allowed;
	}

	#submitForm.pi-submit.is-loading {
		opacity: 0.85;
	}

	.resend-token-wrap {
		text-align: center;
		margin-top: 0.9rem;
	}

	.resend-token-btn {
		background: transparent;
		border: none;
		color: var(--pi-brand);
		text-decoration: underline;
		cursor: pointer;
		padding: 0;
		font-size: 0.9rem;
		font-weight: 600;
	}

	.resend-token-btn:disabled {
		color: #9ca3af;
		text-decoration: none;
		cursor: default;
		font-weight: 500;
	}

	.pi-register {
		text-align: center;
		margin-top: 1.25rem;
		padding-top: 1rem;
		border-top: 1px solid var(--pi-line);
	}

	.pi-register p {
		margin: 0 0 0.35rem;
		color: var(--pi-muted);
		font-size: 0.9rem;
	}

	.pi-register a {
		font-weight: 700;
		color: var(--pi-brand-dark);
		text-decoration: underline;
	}

	.identificationForm,
	.passwordForm,
	.tokenForm,
	#customerIdForm,
	#instructionOne,
	#submitForm {
		display: none;
	}

	.pi-success {
		display: none;
		max-width: 100%;
		width: 100%;
		margin: 0 auto;
		text-align: center;
		animation: piFadeUp 0.35s ease;
	}

	.pi-success.is-visible {
		display: block;
	}

	.pi-success-icon {
		width: 72px;
		height: 72px;
		margin: 0 auto 1rem;
		border-radius: 50%;
		background: var(--pi-soft);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#success-img {
		width: 42%;
	}

	.pi-success h2 {
		margin: 0 0 0.75rem;
		font-size: 1.35rem;
		color: var(--pi-ink);
	}

	.pi-success .success-subtitle p {
		color: var(--pi-muted);
		line-height: 1.5;
		margin-bottom: 0.75rem;
	}

	.pi-existing-account {
		display: none;
		width: 100%;
		margin: 0.5rem auto 0;
		text-align: center;
		animation: piFadeUp 0.35s ease;
	}

	.pi-existing-account.is-visible {
		display: block;
	}

	.pi-existing-account h2 {
		margin: 0 0 0.75rem;
		font-size: 1.35rem;
		color: var(--pi-ink);
	}

	.pi-existing-account-message {
		margin: 0 0 1.25rem;
		color: var(--pi-muted);
		font-size: 1rem;
		line-height: 1.55;
	}

	.pi-secondary-btn {
		display: block;
		width: 100%;
		margin-top: 0.75rem;
		padding: 0.85rem 1rem;
		border: 0;
		border-radius: 12px;
		background: transparent;
		color: var(--pi-muted);
		font-weight: 600;
		font-size: 0.95rem;
		cursor: pointer;
		transition: color 0.15s ease;
	}

	.pi-secondary-btn:hover,
	.pi-secondary-btn:focus {
		color: var(--pi-brand-dark);
		outline: none;
	}

	.success-title,
	#imgsuccess {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	@keyframes piFadeUp {
		from {
			opacity: 0;
			transform: translateY(8px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	@media (max-width: 575px) {
		.pi-activate .pi-card {
			margin: 1rem auto;
			border-radius: 16px;
		}

		.pi-activate .pi-content {
			padding: 1.5rem 1.1rem 1.35rem;
		}

		.pi-step {
			font-size: 0.62rem;
		}

		.pi-input-otp {
			letter-spacing: 0.28em;
		}
	}
