.auth-page {
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: var(--color-background-tertiary);
}

.auth-card {
	width: 100%;
	max-width: 380px;
	background: var(--color-background-primary);
	border: 0.5px solid var(--color-border-tertiary);
	border-radius: var(--border-radius-lg);
	padding: 2rem 1.75rem 1.75rem;
	box-shadow: var(--shadow-lg);
}

.auth-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.75rem;
	gap: 0.625rem;
}

.auth-logo__cross {
	color: var(--color-text-success);
	display: flex;
}

.auth-logo__name {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--color-text-primary);
	text-align: center;
	line-height: 1.3;
}

.auth-logo__sub {
	font-size: 0.8125rem;
	color: var(--color-text-secondary);
	text-align: center;
	margin-top: -0.25rem;
}

.auth-title {
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--color-text-primary);
	margin-bottom: 0.25rem;
}

.auth-subtitle {
	font-size: 0.875rem;
	color: var(--color-text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

.otp-info {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	background: var(--color-background-info);
	color: var(--color-text-info);
	border-radius: var(--border-radius-md);
	padding: 0.75rem 0.875rem;
	font-size: 0.8125rem;
	margin-bottom: 1.5rem;
	line-height: 1.45;
}

.otp-info__icon {
	flex-shrink: 0;
	margin-top: 0.05rem;
}

.auth-footer {
	margin-top: 1.25rem;
	text-align: center;
	font-size: 0.8125rem;
	color: var(--color-text-secondary);
}

.auth-footer a {
	color: var(--color-text-success);
	font-weight: 500;
}

.auth-footer a:hover {
	opacity: 0.75;
}
