:root {
  --trust-blue: #3375FF;
  --trust-blue-10: rgb(51 117 255 / 0.2);
  --trust-green: #16C784;
  --trust-dark: #0B0F1A;
  --trust-white: #FFFFFF;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: var(--trust-white);
	color: var(--trust-dark);
	font-family:
		"Inter",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
}

main {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
}

.left-side {
	flex: 1;
	align-self: stretch;
	min-height: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	background: linear-gradient(
		to right,
		var(--trust-blue-10) 10%,
		var(--trust-white) 95%
	);
}
.title {
	margin-bottom: 40px;
	font-size: 36px;
	font-weight: 600;
}
.lock {
	width: 80%;
	max-width: 380px;
}

.left-side__bottom {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;

	p {
		opacity: .6;
	}
}

.main-content {
	--main-primary: #0500ff;
	--main-text: #1e1e1e;
	--main-muted: #717171;
	--main-qr-border: #e9eaeb;

	flex: 1;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 2rem clamp(1.25rem, 4vw, 3rem);
	padding-top: 0;
}

.main-content__panel {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	max-width: 420px;
	gap: 0;
}

.main-content__title {
	width: 100%;
	margin: 0 0 0.75rem;
	text-align: left;
	font-size: clamp(1.25rem, 2.8vw, 1.5rem);
	font-weight: 700;
	color: var(--main-text);
	line-height: 1.3;
}

.main-content__subtitle {
	width: 100%;
	margin: 0 0 1.75rem;
	text-align: left;
	font-size: 0.9375rem;
	font-weight: 400;
	color: var(--main-muted);
	line-height: 1.5;
}

.main-content__qr-shell {
	position: relative;
	width: 100%;
	max-width: 400px;
	margin: 0 0 1.5rem;
	background: var(--trust-white);
	border: 1px solid var(--main-qr-border);
	border-radius: 20px;
	box-sizing: border-box;
	overflow: hidden;
}

.main-content__qr-badge {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	display: grid;
	place-items: center;
	width: 3.25rem;
	height: 3.25rem;
	padding: 0.35rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgb(15 23 42 / 0.08);
	pointer-events: none;
}

.main-content__qr-badge img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 2.35rem;
	object-fit: contain;
}

.main-content__cta {
	width: 100%;
	max-width: 400px;
	margin: 0;
	padding: 0.95rem 1.5rem;
	border: none;
	border-radius: 999px;
	background: var(--main-primary);
	color: var(--trust-white);
	font-size: 1rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	line-height: 1.25;
}

.main-content__cta:hover {
	filter: brightness(1.06);
}

.main-content__cta:active {
	filter: brightness(0.96);
}

.logo {
	margin-bottom: 40px;
	max-width: 125px;
}

#qr-code-container {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 1 / 1;
	max-width: 100%;
	height: auto;
}