	body {
		margin: 0;
		font-family: 'Montserrat', sans-serif;
	}

	.section-canhcam-secure-file {
		--primary: #f73936;
		--primary-hover: #d62c2a;
		--bg-color: #f4f5f7;
		--card-bg: #ffffff;
		--text-main: #1a1a1a;
		--text-muted: #6b7280;
		--border-color: #e5e7eb;
		--success: #10b981;
		--header-bg: #ffffff;

		background-color: var(--bg-color);
		color: var(--text-main);
		min-height: 100vh;
		display: flex;
		flex-direction: column;
	}

	.section-canhcam-secure-file * {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

	/* --- Header --- */
	.section-canhcam-secure-file header {
		position: sticky;
		top: 0;
		left: 0;
		z-index: 999;
		width: 100%;
		background-color: var(--header-bg);
		border-bottom: 1px solid var(--border-color);
		padding: 16px 32px;
		display: flex;
		align-items: center;
		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	}

	@media (max-width: 1023.98px) {
		.section-canhcam-secure-file header {
			background-color: var(--header-bg);
			border-bottom: 1px solid var(--border-color);
			padding: 16px 15px;
			display: flex;
			align-items: center;
			box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
		}
	}

	.section-canhcam-secure-file .header-logo {
		height: 32px;
		margin-right: 24px;
	}


	/* --- Main Layout --- */
	.section-canhcam-secure-file main {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 64px 20px;
	}

	@media (max-width: 1023.98px) {
		.section-canhcam-secure-file main {
			flex: 1;
			display: flex;
			flex-direction: column;
			align-items: center;
			padding: 15px 15px;
		}
	}


	.section-canhcam-secure-file .page-heading {
		font-size: 20px;
		font-weight: 600;
		margin-bottom: 40px;
		color: var(--text-main);
	}

	/* --- Stepper --- */
	.section-canhcam-secure-file .stepper {
		display: flex;
		align-items: center;
		margin-bottom: 48px;
		max-width: 400px;
		width: 100%;
	}

	.section-canhcam-secure-file .step {
		display: flex;
		align-items: center;
		position: relative;
		flex: 1;
	}

	.section-canhcam-secure-file .step-number {
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background-color: #fff;
		border: 2px solid var(--border-color);
		color: var(--text-muted);
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 600;
		font-size: 14px;
		z-index: 2;
		transition: all 0.3s ease;
	}

	.section-canhcam-secure-file .step.active .step-number {
		border-color: var(--primary);
		background-color: var(--primary);
		color: white;
	}

	.section-canhcam-secure-file .step.completed .step-number {
		border-color: var(--primary);
		background-color: white;
		color: var(--primary);
	}

	.section-canhcam-secure-file .step-label {
		font-size: 12px;
		font-weight: 500;
		color: var(--text-muted);
		margin-top: 12px;
		text-align: center;
		position: absolute;
		top: 100%;
		width: 150px;
		transition: color 0.3s ease;
	}

	.section-canhcam-secure-file .step.active .step-label {
		color: var(--text-main);
		font-weight: 600;
	}

	.section-canhcam-secure-file .step-line {
		flex: 1;
		height: 2px;
		background-color: var(--border-color);
		margin: 0 -16px;
		position: relative;
		z-index: 1;
	}

	.section-canhcam-secure-file .step-line-progress {
		height: 100%;
		background-color: var(--primary);
		width: 0%;
		transition: width 0.4s ease;
	}

	/* --- Card Container --- */
	.section-canhcam-secure-file .card {
		background-color: var(--card-bg);
		border-radius: 8px;
		box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
		width: 100%;
		max-width: 520px;
		padding: 48px;
		position: relative;
		overflow: hidden;
	}

	.section-canhcam-secure-file .step-content {
		display: none;
		flex-direction: column;
		align-items: center;
		text-align: center;
		animation: fadeIn 0.4s ease forwards;
	}

	.section-canhcam-secure-file .step-content.active {
		display: flex;
	}

	@keyframes fadeIn {
		from {
			opacity: 0;
			transform: translateY(10px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/* --- Shared Card Elements --- */
	.section-canhcam-secure-file .icon-container {
		width: 80px;
		height: 80px;
		background-color: #fff1f1;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 24px;
	}

	.section-canhcam-secure-file .icon-container svg {
		width: 40px;
		height: 40px;
		color: var(--primary);
	}

	.section-canhcam-secure-file .card-title {
		font-size: 24px;
		font-weight: 600;
		margin-bottom: 16px;
	}

	.section-canhcam-secure-file .card-desc {
		font-size: 14px;
		color: var(--text-muted);
		margin-bottom: 32px;
		line-height: 1.5;
		max-width: 360px;
	}

	/* --- Step 1 Specifics --- */
	.section-canhcam-secure-file .email-mask {
		background-color: #f3f4f6;
		color: #4b5563;
		padding: 12px 24px;
		border-radius: 6px;
		font-weight: 500;
		font-size: 15px;
		margin-bottom: 32px;
		border: 1px solid var(--border-color);
		width: 100%;
	}

	/* --- Step 2 Specifics (OTP) --- */
	.section-canhcam-secure-file .otp-container {
		display: flex;
		gap: 12px;
		margin-bottom: 32px;
	}

	.section-canhcam-secure-file .otp-input {
		width: 48px;
		height: 56px;
		border: 1px solid var(--border-color);
		border-radius: 6px;
		text-align: center;
		font-size: 24px;
		font-weight: 600;
		color: var(--text-main);
		background-color: #fff;
		transition: border-color 0.2s, box-shadow 0.2s;
	}

	.section-canhcam-secure-file .otp-input:focus {
		outline: none;
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(247, 57, 54, 0.1);
	}

	/* --- Step 3 Specifics (Download) --- */
	.section-canhcam-secure-file .file-info {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 16px;
		border: 1px solid var(--border-color);
		border-radius: 6px;
		width: 100%;
		margin-bottom: 24px;
		text-align: left;
	}

	.section-canhcam-secure-file .file-info svg {
		width: 32px;
		height: 32px;
		color: var(--text-muted);
	}

	.section-canhcam-secure-file .file-details {
		flex: 1;
	}

	.section-canhcam-secure-file .file-name {
		font-weight: 500;
		font-size: 14px;
		color: var(--text-main);
		margin-bottom: 4px;
	}

	.section-canhcam-secure-file .file-size {
		font-size: 12px;
		color: var(--text-muted);
	}

	.section-canhcam-secure-file .progress-container {
		width: 100%;
		margin-bottom: 16px;
	}

	.section-canhcam-secure-file .progress-bar-bg {
		width: 100%;
		height: 8px;
		background-color: #e5e7eb;
		border-radius: 4px;
		overflow: hidden;
	}

	.section-canhcam-secure-file .progress-bar-fill {
		height: 100%;
		background-color: var(--primary);
		width: 0%;
		transition: width 0.1s linear;
	}

	.section-canhcam-secure-file .progress-status {
		font-size: 13px;
		color: var(--text-muted);
		font-weight: 500;
		display: flex;
		justify-content: space-between;
	}

	.section-canhcam-secure-file .success-text {
		color: var(--success);
		font-weight: 600;
		margin-top: 16px;
		display: none;
	}

	/* --- Buttons --- */
	.section-canhcam-secure-file .btn {
		background-color: var(--primary);
		color: white;
		border: none;
		padding: 14px 28px;
		font-size: 15px;
		font-weight: 600;
		border-radius: 6px;
		cursor: pointer;
		transition: background-color 0.2s;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 48px;
	}

	.section-canhcam-secure-file .btn:hover {
		background-color: var(--primary-hover);
	}

	.section-canhcam-secure-file .btn:disabled {
		background-color: #fca5a5;
		cursor: not-allowed;
	}

	.section-canhcam-secure-file .btn-secondary {
		background-color: transparent;
		color: var(--text-muted);
		border: 1px solid transparent;
		margin-top: 16px;
	}

	.section-canhcam-secure-file .btn-secondary:hover {
		background-color: #f3f4f6;
		color: var(--text-main);
	}

	/* --- Loaders --- */
	.section-canhcam-secure-file .spinner {
		border: 3px solid rgba(255, 255, 255, 0.3);
		border-radius: 50%;
		border-top: 3px solid white;
		width: 20px;
		height: 20px;
		animation: spin 1s linear infinite;
		display: none;
		margin-right: 8px;
	}

	.section-canhcam-secure-file .btn.loading .spinner {
		display: block;
	}

	.section-canhcam-secure-file .btn.loading .btn-text {
		display: none;
	}

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

		100% {
			transform: rotate(360deg);
		}
	}

	/* Responsive */
	@media (max-width: 600px) {
		.section-canhcam-secure-file .card {
			padding: 32px 24px;
		}

		.section-canhcam-secure-file .stepper {
			max-width: 300px;
		}

		.section-canhcam-secure-file .step-label {
			font-size: 11px;
		}
	}

	.section-canhcam-secure-file .otp-input.error {
		border-color: #ef4444;
		box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
		animation: secure-pdf-shake 0.3s ease;
	}

	.section-canhcam-secure-file .inline-error {
		color: #ef4444;
		font-size: 13px;
		font-weight: 500;
		margin: -16px 0 16px;
		text-align: center;
	}

	.section-canhcam-secure-file .inline-error[hidden] {
		display: none !important;
	}

	@keyframes secure-pdf-shake {
		0%,
		100% {
			transform: translateX(0);
		}

		25% {
			transform: translateX(-4px);
		}

		75% {
			transform: translateX(4px);
		}
	}




/* Section Box Not Found */

/* --- Header --- */


/* --- Main Layout --- */
.section-canhcam-access-denied .wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

/* --- Card Container --- */
.section-canhcam-access-denied .card {
	background-color: var(--card-bg);
	border-radius: 8px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	width: 100%;
	max-width: 520px;
	padding: 64px 48px;
	text-align: center;
	animation: fadeIn 0.5s ease forwards;
}

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

.section-canhcam-access-denied .icon-container {
	width: 80px;
	height: 80px;
	background-color: #fff1f1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 32px;
}

.section-canhcam-access-denied .icon-container svg {
	width: 40px;
	height: 40px;
	color: var(--primary);
}

.section-canhcam-access-denied .card-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--text-main);
}

.section-canhcam-access-denied .card-desc {
	font-size: 15px;
	color: var(--text-muted);
	margin-bottom: 32px;
	line-height: 1.6;
}

/* --- Buttons --- */
.section-canhcam-access-denied .btn {
	background-color: var(--primary);
	color: white;
	border: none;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	width: 100%;
	display: inline-block;
	text-decoration: none;
}

.section-canhcam-access-denied .btn:hover {
	background-color: var(--primary-hover);
	transform: translateY(-1px);
}

.section-canhcam-access-denied .btn-secondary {
	background-color: transparent;
	color: var(--text-muted);
	border: 1px solid var(--border-color);
	margin-top: 12px;
}

.section-canhcam-access-denied .btn-secondary:hover {
	background-color: #f3f4f6;
	color: var(--text-main);
	border-color: #d1d5db;
}

.section-canhcam-access-denied .footer-text {
	margin-top: 32px;
	font-size: 13px;
	color: #9ca3af;
}

/* Responsive */
@media (max-width: 600px) {
	.section-canhcam-access-denied .card {
		padding: 48px 24px;
	}
}

/* Secure PDF layout sync */
body.section-canhcam-secure-file {
	background-color: #f4f5f7;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box {
	--step-inactive: #6b7280;
	--step-inactive-bg: #f3f4f6;

	width: 100%;
	max-width: 1000px;
	min-height: 640px;
	display: flex;
	background-color: #ffffff;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .sidebar {
	width: 300px;
	flex-shrink: 0;
	display: flex;
	align-items: flex-start;
	padding: 48px 32px;
	background-color: #fcfcfc;
	border-right: 1px solid #f3f4f6;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .sidebar-content {
	flex: 1;
	min-height: 640px;
	padding: 56px 80px 64px;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .page-heading {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 40px;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .stepper {
	width: 236px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin: 0;
	max-width: none;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step {
	display: flex;
	align-items: center;
	position: static;
	flex: none;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-number {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 0;
	background-color: var(--step-inactive-bg);
	color: var(--step-inactive);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
	margin-right: 16px;
	margin-bottom: 0;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-label {
	position: static;
	top: auto;
	width: auto;
	margin-top: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--step-inactive);
	text-align: left;
	transition: color 0.3s ease;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step.active .step-number,
body.section-canhcam-secure-file .canhcam-secure-wrap-box .step.completed .step-number {
	background-color: var(--primary);
	color: #ffffff;
	border-color: transparent;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step.active .step-number {
	box-shadow: 0 0 0 4px rgba(247, 57, 54, 0.15);
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step.active .step-label,
body.section-canhcam-secure-file .canhcam-secure-wrap-box .step.completed .step-label {
	color: var(--text-main);
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step.active .step-label {
	font-weight: 600;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-line {
	position: relative;
	width: 2px;
	height: 32px;
	margin: 6px 0 6px 14px;
	background-color: var(--step-inactive-bg);
	overflow: hidden;
	flex: none;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-line-progress {
	position: absolute;
	inset: 0;
	width: auto;
	height: auto;
	background-color: var(--primary);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.3s ease;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-line.completed .step-line-progress {
	transform: scaleY(1);
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .card {
	width: 100%;
	max-width: 560px;
	padding: 0;
	background-color: transparent;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-content {
	display: none;
	text-align: left;
	animation: fadeIn 0.4s ease forwards;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-content.active {
	display: block;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .icon-container {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-color);
	border-radius: 16px;
	background-color: #fafafa;
	margin-bottom: 24px;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .icon-container svg {
	width: 28px;
	height: 28px;
	color: var(--primary);
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .card-title {
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
	color: var(--text-main);
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .card-desc {
	max-width: none;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-muted);
	margin-bottom: 24px;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .email-mask {
	width: 100%;
	padding: 14px 16px;
	font-size: 15px;
	color: var(--text-muted);
	background-color: #f9fafb;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	margin-bottom: 28px;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .otp-container {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .otp-input {
	width: 56px;
	height: 64px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: var(--text-main);
	background-color: #ffffff;
	transition: all 0.2s ease;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .otp-resend {
	justify-content: flex-start;
	gap: 8px;
	margin: 0 0 20px;
	font-size: 13px;
	text-align: left;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .otp-resend-button {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--primary);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .otp-resend-button:disabled {
    color: var(--text-muted);
    cursor: not-allowed;
    text-decoration: none;
}
body.section-canhcam-secure-file .canhcam-secure-wrap-box .inline-error {
	margin: 0 0 20px;
	text-align: left;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 8px;
	transition: background-color 0.2s ease, transform 0.1s ease;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .btn:hover:not(:disabled) {
	background-color: var(--primary-hover);
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .btn:active:not(:disabled) {
	transform: scale(0.98);
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .btn:disabled {
	opacity: 0.65;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .btn + .btn {
	margin-top: 16px;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .btn-secondary {
	background-color: transparent;
	color: var(--text-main);
	border: 1px solid var(--border-color);
	margin-top: 16px;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .btn-secondary:hover:not(:disabled) {
	background-color: #f9fafb;
	color: var(--text-main);
	border-color: var(--border-color);
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #ffffff;
	display: none;
	margin-right: 0;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .btn.loading .btn-text {
	display: inline;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .file-info {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	margin-bottom: 32px;
	background-color: #fafafa;
	text-align: left;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .file-info > svg {
	width: 40px;
	height: 40px;
	padding: 8px;
	border-radius: 8px;
	color: var(--primary);
	background-color: rgba(247, 57, 54, 0.1);
	flex-shrink: 0;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .file-details {
	flex: 1;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .file-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-main);
	margin-bottom: 4px;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .file-size {
	font-size: 13px;
	color: var(--text-muted);
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .progress-container {
	margin-bottom: 24px;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .progress-bar-bg {
	width: 100%;
	height: 6px;
	background-color: #e5e7eb;
	border-radius: 4px;
	overflow: hidden;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .progress-bar-fill {
	height: 100%;
	width: 0%;
	background-color: var(--primary);
	transition: width 0.3s ease;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .progress-status {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-muted);
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .success-text {
	display: none;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--success);
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .success-text.visible {
	display: flex;
}

body.section-canhcam-secure-file .canhcam-secure-wrap-box .success-text svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

@media (max-width: 860px) {
	body.section-canhcam-secure-file .canhcam-secure-wrap-box {
		min-height: auto;
		flex-direction: column;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .sidebar {
		width: 100%;
		padding: 24px 32px 20px;
		border-right: none;
		border-bottom: 1px solid var(--border-color);
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .sidebar-content {
		min-height: auto;
		padding: 40px 32px;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .page-heading {
		margin-bottom: 24px;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .stepper {
		position: static;
		width: 100%;
		flex-direction: row;
		align-items: flex-start;
		margin-top: 24px;
		margin-bottom: 0;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .step {
		flex: 1;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-number {
		margin-right: 0;
		margin-bottom: 8px;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-label {
		font-size: 12px;
		text-align: center;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-line {
		width: 24px;
		height: 2px;
		margin: 14px 0 0;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-line-progress {
		transform: scaleX(0);
		transform-origin: left;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .step-line.completed .step-line-progress {
		transform: scaleX(1);
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .card-title {
		font-size: 24px;
	}
	body.section-canhcam-secure-file .canhcam-secure-wrap-box .card-desc{
		font-size: 14px;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .otp-input {
		width: 48px;
		height: 56px;
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	body.section-canhcam-secure-file .canhcam-secure-wrap-box .sidebar,
	body.section-canhcam-secure-file .canhcam-secure-wrap-box .sidebar-content {
		padding-left: 20px;
		padding-right: 20px;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .otp-container {
		gap: 8px;
	}

	body.section-canhcam-secure-file .canhcam-secure-wrap-box .otp-input {
		width: 40px;
		height: 50px;
	}
}
