body.axsino-auth-page {
	--axsino-auth-primary: #155eef;
	--axsino-auth-primary-hover: #004eeb;
	--axsino-auth-primary-soft: #eff4ff;
	--axsino-auth-text: #101828;
	--axsino-auth-muted: #667085;
	--axsino-auth-border: #d0d5dd;
	--axsino-auth-surface: #ffffff;
	--axsino-auth-background: #f5f7fb;
	--axsino-auth-danger: #b42318;
	--axsino-auth-danger-soft: #fef3f2;
	--axsino-auth-success: #067647;
	--axsino-auth-success-soft: #ecfdf3;
	margin: 0;
	background: var(--axsino-auth-background);
	color: var(--axsino-auth-text);
}

.axsino-auth,
.axsino-auth * {
	box-sizing: border-box;
}

.axsino-auth {
	min-height: 100vh;
	min-height: 100svh;
	display: grid;
	place-items: center;
	direction: rtl;
	padding: 24px 16px;
	font-family: inherit;
}

.axsino-auth__shell {
	width: 100%;
	max-width: 430px;
}

.axsino-auth__back {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-block-end: 14px;
	color: var(--axsino-auth-muted);
	font-weight: 600;
	text-decoration: none;
}

.axsino-auth__back:hover {
	color: var(--axsino-auth-primary);
}

.axsino-auth__card {
	background: var(--axsino-auth-surface);
	border: 1px solid #e4e7ec;
	border-radius: 20px;
	box-shadow: 0 16px 48px rgba(16, 24, 40, 0.09);
	padding: 28px 22px;
}

.axsino-auth__brand {
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-block-end: 22px;
	color: var(--axsino-auth-primary);
	font-size: 24px;
	font-weight: 800;
}

.axsino-auth__brand img {
	display: block;
	max-width: 170px;
	max-height: 56px;
	width: auto;
	height: auto;
}

.axsino-auth h1 {
	margin: 0;
	color: var(--axsino-auth-text);
	font-size: 24px;
	line-height: 1.5;
	font-weight: 800;
	text-align: center;
}

.axsino-auth__intro {
	margin: 7px 0 24px;
	color: var(--axsino-auth-muted);
	line-height: 1.8;
	text-align: center;
}

.axsino-auth__status {
	margin-block-end: 16px;
	border-radius: 10px;
	padding: 11px 12px;
	font-size: 14px;
	line-height: 1.7;
}

.axsino-auth__status[data-kind="error"] {
	background: var(--axsino-auth-danger-soft);
	color: var(--axsino-auth-danger);
	border: 1px solid #fecdca;
}

.axsino-auth__status[data-kind="success"] {
	background: var(--axsino-auth-success-soft);
	color: var(--axsino-auth-success);
	border: 1px solid #abefc6;
}

.axsino-auth__form[hidden],
.axsino-auth__status[hidden] {
	display: none;
}

.axsino-auth__form label {
	display: block;
	margin-block-end: 8px;
	color: #344054;
	font-weight: 700;
}

.axsino-auth__form input {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--axsino-auth-border);
	border-radius: 11px;
	background: var(--axsino-auth-surface);
	color: var(--axsino-auth-text);
	padding: 10px 13px;
	font: inherit;
	text-align: center;
	outline: none;
}

.axsino-auth__form input::placeholder {
	color: #98a2b3;
}

.axsino-auth__form input:focus {
	border-color: var(--axsino-auth-primary);
	box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.12);
}

.axsino-auth__primary {
	width: 100%;
	min-height: 48px;
	margin-block-start: 14px;
	border: 1px solid var(--axsino-auth-primary);
	border-radius: 11px;
	background: var(--axsino-auth-primary);
	color: #ffffff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.axsino-auth__primary:hover:not(:disabled) {
	background: var(--axsino-auth-primary-hover);
	border-color: var(--axsino-auth-primary-hover);
}

.axsino-auth__primary:disabled {
	cursor: wait;
	opacity: 0.7;
}

.axsino-auth__sent-to {
	margin: 0 0 18px;
	color: var(--axsino-auth-muted);
	font-size: 14px;
	line-height: 1.8;
	text-align: center;
}

.axsino-auth__sent-to b {
	color: var(--axsino-auth-text);
}

.axsino-auth__secondary-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-block-start: 16px;
}

.axsino-auth__link {
	border: 0;
	background: transparent;
	color: var(--axsino-auth-primary);
	padding: 8px 0;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.axsino-auth__link:disabled {
	color: var(--axsino-auth-muted);
	cursor: not-allowed;
}

.axsino-auth a:focus-visible,
.axsino-auth button:focus-visible,
.axsino-auth input:focus-visible {
	outline: 2px solid #84adff;
	outline-offset: 3px;
}

@media (min-width: 640px) {
	.axsino-auth {
		padding: 36px 20px;
	}

	.axsino-auth__card {
		padding: 36px 34px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.axsino-auth *,
	.axsino-auth *::before,
	.axsino-auth *::after {
		scroll-behavior: auto;
		transition-duration: 0.01ms;
		animation-duration: 0.01ms;
		animation-iteration-count: 1;
	}
}
