:root {
	--account-auth-transition: 180ms ease;
	--account-auth-cyan: #41cfff;
	--account-auth-violet: #8d6cff;
	--account-auth-surface: rgba(8, 11, 28, .64);
	--account-auth-field-surface: rgba(7, 9, 25, .54);
}

.auth-page .page-shell {
	display: grid;
	place-items: center;
	width: min(1400px, calc(100% - 40px));
	min-height: calc(100svh - var(--site-header-height));
	margin-block: 0;
	padding-block: clamp(38px, 6vw, 82px);
}

.account-auth {
	width: 100%;
	font-family: "GothamPro", "Gotham Pro", "Montserrat", "Segoe UI", sans-serif;
}

.account-auth__panel {
	--account-auth-panel-padding-inline: clamp(28px, 4vw, 38px);
	position: relative;
	isolation: isolate;
	width: min(100%, 540px);
	margin: 0 auto;
	padding: clamp(28px, 4vw, 38px) var(--account-auth-panel-padding-inline);
	border: 1px solid rgba(104, 119, 178, .3);
	border-radius: 2px;
	background:
		linear-gradient(135deg, rgba(35, 41, 78, .12), transparent 48%),
		var(--account-auth-surface);
	box-shadow: 0 26px 86px rgba(0, 0, 0, .38), inset 0 1px rgba(255, 255, 255, .025);
	backdrop-filter: blur(22px) saturate(132%);
	-webkit-backdrop-filter: blur(22px) saturate(132%);
}

.account-auth__panel::after {
	position: absolute;
	right: -1px;
	bottom: -1px;
	left: -1px;
	z-index: 2;
	height: 2px;
	background: var(--account-auth-cyan);
	box-shadow: 0 0 12px rgba(65, 207, 255, .32);
	content: "";
	pointer-events: none;
}

.account-auth__panel--wide {
	width: min(100%, 750px);
}

.account-auth__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
}

.account-auth__header h1 {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin: 0;
	color: #f3f1ff;
	font-size: clamp(31px, 5vw, 43px);
	font-weight: 400;
	letter-spacing: -.025em;
	line-height: 1;
}

.account-auth__header h1 svg {
	display: block;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	fill: none;
	stroke: #9ce5ff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.45;
	filter: drop-shadow(0 0 7px rgba(65, 207, 255, .14));
}

.account-auth__identity-badge {
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 15px;
	border: 1px solid rgba(65, 207, 255, .38);
	border-radius: 0;
	color: #9ce5ff;
	background: rgba(20, 112, 148, .08);
	box-shadow: inset 0 0 16px rgba(65, 207, 255, .025);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .13em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translateX(calc(var(--account-auth-panel-padding-inline) + 3px));
}

.account-auth__identity-badge::after {
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	width: 3px;
	background: var(--account-auth-cyan);
	box-shadow: 0 0 10px rgba(65, 207, 255, .28);
	content: "";
}

.account-auth__form {
	display: grid;
	gap: 19px;
}

.account-auth__captcha {
	position: relative;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 0;
	min-width: 0;
	overflow: hidden;
	opacity: 0;
	line-height: 0;
	transition:
		height 180ms ease-out,
		opacity 180ms ease-out;
}

.account-auth__form[data-captcha-required="true"][data-captcha-provider="cloudflare"] .account-auth__captcha {
	height: 65px;
	overflow: visible;
	opacity: 1;
}

.account-auth__form[data-captcha-required="true"][data-captcha-provider="yandex"] .account-auth__captcha {
	height: 100px;
	overflow: visible;
	opacity: 1;
}

.account-auth__registration-flow {
	display: grid;
	min-width: 0;
	overflow: hidden;
	transition: height 240ms cubic-bezier(.22, 1, .36, 1);
}

.account-auth__registration-message {
	grid-column: 1;
	grid-row: 1;
}

.account-auth__registration-stage {
	grid-column: 1;
	grid-row: 2;
	min-width: 0;
	opacity: 0;
	transform: translateX(-18px);
	transition:
		opacity 190ms ease,
		transform 240ms cubic-bezier(.22, 1, .36, 1);
}

.account-auth__registration-stage.is-active {
	opacity: 1;
	transform: translateX(0);
}

.account-auth__registration-stage--details.is-leaving {
	opacity: 0;
	pointer-events: none;
	transform: translateX(18px);
}

.account-auth__registration-stage--details {
	padding-top: 8px;
}

.account-auth__registration-stage--verification.is-entering {
	pointer-events: none;
}

.account-auth__registration-stage[hidden] {
	display: none;
}

.account-auth__grid,
.account-auth__registration-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.account-auth__field-control {
	display: grid;
	min-width: 0;
	gap: 7px;
	align-content: start;
}

.account-auth__registration-actions {
	align-items: center;
}

.account-auth__registration-actions > .account-auth__submit {
	width: 100%;
	min-width: 0;
	margin-top: 0;
	white-space: nowrap;
}

.account-auth__terms {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #aeb8cf;
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
}

.account-auth__terms-control {
	position: relative;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 1px;
}

.account-auth__terms input {
	appearance: none;
	display: block;
	width: 20px;
	height: 20px;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(116, 128, 184, .5);
	border-radius: 0;
	background: var(--account-auth-field-surface);
	cursor: pointer;
	transition: border-color var(--account-auth-transition), background-color var(--account-auth-transition), box-shadow var(--account-auth-transition);
}

.account-auth__terms input:is(:hover, :checked, :focus-visible) {
	border-color: var(--account-auth-cyan);
}

.account-auth__terms input:checked {
	background: rgba(65, 207, 255, .13);
}

.account-auth__terms input:focus-visible {
	outline: 2px solid rgba(65, 207, 255, .55);
	outline-offset: 3px;
}

.account-auth__terms input[aria-invalid="true"] {
	border-color: #ff6c83;
}

.account-auth__terms-control > svg {
	position: absolute;
	inset: 2px;
	width: 16px;
	height: 16px;
	color: var(--account-auth-cyan);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--account-auth-transition);
}

.account-auth__terms input:checked + svg { opacity: 1; }
.account-auth__terms label { display: block; margin: 0; font-weight: 400; cursor: pointer; }
.account-auth__terms a { display: inline; color: var(--account-auth-cyan); transition: color var(--account-auth-transition), text-shadow var(--account-auth-transition); }
.account-auth__terms a:is(:hover, :focus-visible) { color: #fff; text-shadow: 0 0 8px rgba(255, 255, 255, .4); }
.account-auth__form.is-submitting .account-auth__terms { pointer-events: none; opacity: .6; }

.account-auth__field {
	position: relative;
	display: block;
	min-width: 0;
}

.account-auth__field::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background:
		linear-gradient(var(--account-auth-cyan), var(--account-auth-cyan)) right top / 1px 0 no-repeat,
		linear-gradient(var(--account-auth-cyan), var(--account-auth-cyan)) right bottom / 0 1px no-repeat,
		linear-gradient(var(--account-auth-cyan), var(--account-auth-cyan)) left bottom / 1px 0 no-repeat;
	content: "";
	pointer-events: none;
	transition: background-size var(--account-auth-transition);
}

.account-auth__field::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	width: 3px;
	background: rgba(65, 207, 255, .66);
	box-shadow: 0 0 10px rgba(65, 207, 255, .16);
	content: "";
	pointer-events: none;
	transition: background-color var(--account-auth-transition), box-shadow var(--account-auth-transition);
}

.account-auth__field input {
	display: block;
	width: 100%;
	height: 60px;
	min-height: 60px;
	padding: 0 18px;
	border: 1px solid rgba(116, 128, 184, .3);
	border-radius: 0;
	color: #dfe8ff;
	background: var(--account-auth-field-surface);
	box-shadow: inset 0 0 20px rgba(0, 0, 0, .08);
	font-family: "GothamPro", "Gotham Pro", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	outline: none;
	transition:
		border-color var(--account-auth-transition),
		box-shadow var(--account-auth-transition),
		background-color var(--account-auth-transition),
		opacity var(--account-auth-transition);
}

.account-auth__field-label {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	height: 1px;
	color: #8792ae;
	pointer-events: none;
	transition: color var(--account-auth-transition);
}

.account-auth__field-label::before,
.account-auth__field-label::after {
	height: 1px;
	background: rgba(65, 207, 255, .66);
	content: "";
	opacity: 0;
	transform: scaleX(0);
	transition:
		opacity 90ms ease,
		transform var(--account-auth-transition),
		background-color var(--account-auth-transition);
}

.account-auth__field-label::before {
	flex: 0 0 13px;
	transform-origin: right center;
}

.account-auth__field-label::after {
	flex: 1 1 auto;
	transform-origin: left center;
}

.account-auth__field-label > span {
	display: block;
	margin: 0 5px;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .11em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translateY(30px);
	transition:
		color var(--account-auth-transition),
		font-size var(--account-auth-transition),
		transform var(--account-auth-transition);
}

.account-auth__field input:focus,
.account-auth__field input:not(:placeholder-shown),
.account-auth__field input:-webkit-autofill,
.account-auth__field.has-value input {
	border-color: transparent;
	background: rgba(10, 14, 35, .7);
	box-shadow: 0 0 18px rgba(65, 207, 255, .075), inset 0 0 20px rgba(0, 0, 0, .08);
}

.account-auth__field:focus-within::before,
.account-auth__field.has-value::before,
.account-auth__field:has(input:not(:placeholder-shown))::before,
.account-auth__field:has(input:-webkit-autofill)::before {
	background-size: 1px 100%, 100% 1px, 1px 100%;
}

.account-auth__field input:focus + .account-auth__field-label,
.account-auth__field input:not(:placeholder-shown) + .account-auth__field-label,
.account-auth__field input:-webkit-autofill + .account-auth__field-label,
.account-auth__field.has-value .account-auth__field-label {
	color: #a5e9ff;
}

.account-auth__field input:focus + .account-auth__field-label::before,
.account-auth__field input:focus + .account-auth__field-label::after,
.account-auth__field input:not(:placeholder-shown) + .account-auth__field-label::before,
.account-auth__field input:not(:placeholder-shown) + .account-auth__field-label::after,
.account-auth__field input:-webkit-autofill + .account-auth__field-label::before,
.account-auth__field input:-webkit-autofill + .account-auth__field-label::after,
.account-auth__field.has-value .account-auth__field-label::before,
.account-auth__field.has-value .account-auth__field-label::after {
	opacity: 1;
	transform: scaleX(1);
}

.account-auth__field input:focus + .account-auth__field-label > span,
.account-auth__field input:not(:placeholder-shown) + .account-auth__field-label > span,
.account-auth__field input:-webkit-autofill + .account-auth__field-label > span,
.account-auth__field.has-value .account-auth__field-label > span {
	font-size: 10px;
	transform: translateY(0);
}

.account-auth__field-error,
.account-auth__password-strength {
	min-height: 13px;
	padding: 0 3px;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .025em;
	line-height: 1.25;
}

.account-auth__field-error {
	color: #ff7e91;
}

.account-auth__password-strength {
	color: #ff9ba9;
	transition: color var(--account-auth-transition), text-shadow var(--account-auth-transition);
}

.account-auth__password-strength[data-strength="good"] {
	color: #edcf78;
}

.account-auth__password-strength[data-strength="excellent"] {
	color: #70e8b3;
	text-shadow: 0 0 9px rgba(82, 226, 166, .16);
}

.account-auth__field input:-webkit-autofill,
.account-auth__field input:-webkit-autofill:hover,
.account-auth__field input:-webkit-autofill:focus,
.account-auth__field input:-webkit-autofill:active {
	-webkit-text-fill-color: #dfe8ff;
	caret-color: #dfe8ff;
	font-family: "GothamPro", "Gotham Pro", sans-serif !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	letter-spacing: normal !important;
	line-height: normal !important;
	-webkit-box-shadow:
		0 0 0 1000px rgba(10, 14, 35, .96) inset,
		0 0 18px rgba(65, 207, 255, .075);
	animation: account-auth-autofill-detected .01s both;
}

.account-auth__field input:autofill {
	font-family: "GothamPro", "Gotham Pro", sans-serif !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	letter-spacing: normal !important;
	line-height: normal !important;
}

.account-auth__field:focus-within::after {
	background: var(--account-auth-cyan);
	box-shadow: 0 0 12px rgba(65, 207, 255, .32);
}

.account-auth__form.is-submitting .account-auth__field,
.account-auth__verification-form.is-submitting .account-auth__verification-code {
	pointer-events: none;
}

.account-auth__form.is-submitting .account-auth__field input,
.account-auth__verification-form.is-submitting .account-auth__verification-code input {
	opacity: .52;
	cursor: wait;
}

.account-auth__submit {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 54px;
	min-height: 54px;
	margin-top: 1px;
	padding: 0 18px;
	border: 1px solid rgba(132, 101, 255, .52);
	border-radius: 0;
	color: #d9ceff;
	background: rgba(93, 63, 190, .12);
	box-shadow: inset 0 0 18px rgba(141, 108, 255, .025);
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .085em;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		border-color var(--account-auth-transition),
		color var(--account-auth-transition),
		box-shadow var(--account-auth-transition),
		background-color var(--account-auth-transition);
}

.account-auth__submit::after {
	position: absolute;
	right: -1px;
	bottom: -1px;
	left: -1px;
	height: 2px;
	background: var(--account-auth-violet);
	box-shadow: 0 0 11px rgba(141, 108, 255, .32);
	content: "";
}

.account-auth__submit:hover,
.account-auth__submit:focus-visible {
	border-color: #9a80ff;
	color: #f3efff;
	background: rgba(107, 75, 210, .2);
	box-shadow: 0 0 20px rgba(132, 101, 255, .12), inset 0 0 20px rgba(141, 108, 255, .04);
	filter: none;
	outline: none;
}

.account-auth__submit:disabled {
	cursor: wait;
}

.account-auth__submit-label,
.account-auth__submit-spinner {
	transition: opacity 130ms ease;
}

.account-auth__submit-label {
	display: inline-block;
	opacity: 1;
	transform: scale(1);
	transform-origin: center;
	transition: opacity 130ms ease, transform 160ms ease-out;
}

.account-auth__submit:hover:not(:disabled) .account-auth__submit-label,
.account-auth__submit:focus-visible:not(:disabled) .account-auth__submit-label {
	transform: scale(1.035);
}

.account-auth__submit-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(217, 206, 255, .2);
	border-top-color: #d9ceff;
	border-radius: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
}

.account-auth__form.is-submitting .account-auth__submit-label,
.account-auth__verification-form.is-submitting .account-auth__submit-label {
	opacity: 0;
}

.account-auth__form.is-submitting .account-auth__submit-spinner,
.account-auth__verification-form.is-submitting .account-auth__submit-spinner {
	opacity: 1;
	animation: account-auth-spinner 720ms linear infinite;
}

.account-auth__verification-intro {
	max-width: 590px;
	margin: 4px auto 27px;
	color: #aab4ca;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
	text-align: center;
}

.account-auth__verification-intro span {
	color: #72d8ff;
	text-shadow: 0 0 10px rgba(65, 207, 255, .16);
	word-break: break-word;
}

.account-auth__verification-form {
	display: grid;
	gap: 22px;
}

.account-auth__verification-code {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 11px;
	width: min(100%, 448px);
	margin-inline: auto;
}

.account-auth__verification-code input {
	display: block;
	width: 100%;
	min-width: 0;
	height: 70px;
	padding: 0;
	border: 1px solid rgba(116, 128, 184, .34);
	border-bottom: 2px solid rgba(141, 108, 255, .78);
	border-radius: 0;
	color: #dff6ff;
	background: rgba(7, 9, 25, .62);
	box-shadow: inset 0 0 18px rgba(0, 0, 0, .12);
	font-family: "JetBrainsMono", "JetBrains Mono", Consolas, monospace;
	font-size: 25px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	caret-color: var(--account-auth-cyan);
	outline: none;
	transition:
		border-color var(--account-auth-transition),
		box-shadow var(--account-auth-transition),
		background-color var(--account-auth-transition),
		opacity var(--account-auth-transition);
}

.account-auth__verification-code input:hover {
	border-color: rgba(104, 190, 231, .55);
	border-bottom-color: #9d84ff;
}

.account-auth__verification-code input:focus {
	border-color: var(--account-auth-cyan);
	border-bottom-color: #a68fff;
	background: rgba(10, 15, 37, .78);
	box-shadow: 0 0 15px rgba(65, 207, 255, .1), inset 0 0 18px rgba(0, 0, 0, .12);
}

.account-auth__verification-submit {
	width: min(100%, 448px);
	margin-inline: auto;
}

.account-auth__verification-help {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin-top: 22px;
	color: #727d99;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.55;
}

.account-auth__verification-help button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 30px;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: #9ce5ff;
	background: transparent;
	font-family: inherit;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.4;
	text-align: right;
	cursor: pointer;
	transition: color 160ms ease, text-shadow 160ms ease, opacity 160ms ease;
}

.account-auth__verification-help button:hover:not(:disabled),
.account-auth__verification-help button:focus-visible:not(:disabled) {
	color: #d8f5ff;
	text-shadow: 0 0 10px rgba(65, 207, 255, .3);
	outline: none;
}

.account-auth__verification-help button:disabled {
	color: #69748f;
	cursor: default;
}

.account-auth__resend-spinner {
	position: absolute;
	right: 0;
	width: 15px;
	height: 15px;
	border: 1px solid rgba(156, 229, 255, .2);
	border-top-color: #9ce5ff;
	border-radius: 50%;
	opacity: 0;
}

.account-auth__verification-help button.is-loading [data-registration-resend-label] {
	opacity: 0;
}

.account-auth__verification-help button.is-loading .account-auth__resend-spinner {
	opacity: 1;
	animation: account-auth-resend-spinner 650ms linear infinite;
}

.account-auth__verification-status {
	min-height: 17px;
	margin: 8px 0 0;
	color: #69ddb3;
	font-size: 11px;
	line-height: 1.5;
	text-align: right;
}

.account-auth__separator {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 24px 0 12px;
	color: #68728e;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.account-auth__separator::before,
.account-auth__separator::after {
	flex: 1;
	height: 1px;
	background: rgba(116, 128, 184, .15);
	content: "";
}

.account-auth__providers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.account-auth__provider {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: rgba(221, 226, 241, .72);
	background: transparent;
	box-shadow: none;
	filter: drop-shadow(0 0 0 rgba(65, 207, 255, 0));
	transition: color 200ms ease, filter 200ms ease;
}

.account-auth__provider:hover,
.account-auth__provider:focus-visible {
	border-color: transparent;
	color: var(--account-auth-cyan);
	background: transparent;
	box-shadow: none;
	filter: brightness(1.1) drop-shadow(0 0 5px rgba(65, 207, 255, .46));
	outline: none;
}

.account-auth__steam-logo {
	display: block;
	width: 36px;
	height: 36px;
	fill: currentColor;
}

.account-auth__provider--discord svg {
	display: block;
	width: 40px;
	height: 40px;
	fill: currentColor;
}

.account-auth__message {
	margin-bottom: 20px;
	padding: 13px 15px;
	border: 1px solid rgba(255, 81, 108, .32);
	border-right: 3px solid #ff516c;
	color: #ff9cab;
	background: rgba(104, 22, 38, .12);
	font-size: 13px;
	line-height: 1.5;
}

.account-auth__message--notice {
	border-color: rgba(132, 101, 255, .3);
	border-right-color: var(--account-auth-violet);
	color: #c9bcff;
	background: rgba(75, 52, 147, .1);
}

.account-auth__footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-top: 25px;
	color: #7d87a3;
	font-size: 12px;
}

.account-auth__footer-link {
	color: #aeb8cf;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .025em;
	text-shadow: 0 0 0 rgba(255, 255, 255, 0);
	transition: color 180ms ease, text-shadow 180ms ease, filter 180ms ease;
}

.account-auth__footer-link:hover,
.account-auth__footer-link:focus-visible {
	color: #ffffff;
	text-shadow: 0 0 12px rgba(255, 255, 255, .46);
	filter: brightness(1.12);
	outline: none;
}

@keyframes account-auth-spinner {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes account-auth-resend-spinner {
	to {
		transform: rotate(360deg);
	}
}

@keyframes account-auth-autofill-detected {
	from {
		opacity: .999;
	}

	to {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.account-auth *,
	.account-auth *::before,
	.account-auth *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

@media (max-width: 680px) {
	.auth-page .page-shell {
		width: min(100% - 24px, 750px);
		padding-block: 30px 48px;
	}

	.account-auth__panel {
		--account-auth-panel-padding-inline: 20px;
		padding: 27px var(--account-auth-panel-padding-inline);
	}

	.account-auth__header {
		gap: 14px;
		margin-bottom: 28px;
	}

	.account-auth__identity-badge {
		min-height: 31px;
		padding-inline: 11px;
		font-size: 9px;
	}

	.account-auth__grid,
	.account-auth__registration-actions {
		grid-template-columns: 1fr;
		gap: 19px;
	}

	.account-auth__verification-code {
		gap: 7px;
	}

	.account-auth__verification-code input {
		height: 58px;
		font-size: 21px;
	}

	.account-auth__verification-help {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.account-auth__verification-help button {
		justify-content: flex-start;
		text-align: left;
	}
}

@media (max-width: 390px) {
	.account-auth__header {
		gap: 10px;
	}

	.account-auth__header h1 {
		font-size: 29px;
	}

	.account-auth__header h1 svg {
		width: 26px;
		height: 26px;
		flex-basis: 26px;
	}
}
