﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	min-height: 100vh;
	background: radial-gradient(circle at top left, #e0f2ff 0, #f4f7f9 40%, #eef2f7 100%);
	color: #1f2933;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.app-shell {
	width: 100%;
	max-width: 1440px;
	background: transparent;
	display: flex;
	gap: 24px;
}

.sidebar {
	width: 80px;
	min-width: 72px;
	max-width: 96px;
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
	padding: 24px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.sidebar-logo {
	width: 64px;
	height: 64px;
	border-radius: 20px;
	border: 1px solid #eef3ff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	background: #f6f8ff;
	font-size: 14px;
	font-weight: 600;
	color: #4b6fff;
}

.sidebar-pill {
	margin-top: auto;
	background: linear-gradient(135deg, #4b6fff, #1c9bff);
	color: #ffffff;
	border-radius: 999px;
	padding: 10px 14px;
	font-size: 11px;
	font-weight: 600;
	text-align: center;
	box-shadow: 0 18px 40px rgba(59, 130, 246, 0.45);
	line-height: 1.3;
}

/* Main content */

.content-wrapper {
	flex: 1;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.card {
	flex: 1;
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
}

.card-header {
	font-size: 16px;
	font-weight: 600;
	color: #3159ff;
	padding: 10px 16px;
	border-radius: 999px;
	background: #edf3ff;
	align-self: center;
	margin-bottom: 24px;
}

.card-body {
	flex: 1;
	border-radius: 20px;
	border: 1px dashed #d5deff;
	background: #f9fbff;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 16px;
}

.icon-circle {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 20%, #ffeff2 0, #ffe4e7 40%, #ffd7dd 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 4px;
	box-shadow: 0 18px 40px rgba(248, 113, 113, 0.35);
}

	.icon-circle span {
		display: inline-block;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		border: 3px solid #dc2626;
		position: relative;
	}

		.icon-circle span::before,
		.icon-circle span::after {
			content: "";
			position: absolute;
			inset: 50%;
			width: 18px;
			height: 2px;
			background: #dc2626;
			border-radius: 999px;
			transform-origin: center;
		}

		.icon-circle span::before {
			transform: translate(-50%, -50%) rotate(45deg);
		}

		.icon-circle span::after {
			transform: translate(-50%, -50%) rotate(-45deg);
		}

.title {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
}

.subtitle {
	font-size: 14px;
	color: #6b7280;
	max-width: 420px;
}

.hint {
	margin-top: 6px;
	font-size: 12px;
	color: #9ca3af;
}

.actions {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.btn-primary,
.btn-ghost {
	border-radius: 999px;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-primary {
	background: linear-gradient(135deg, #4b6fff, #1c9bff);
	color: #ffffff;
	box-shadow: 0 18px 40px rgba(59, 130, 246, 0.45);
}

	.btn-primary:hover {
		transform: translateY(-1px);
		box-shadow: 0 22px 50px rgba(59, 130, 246, 0.55);
	}

.btn-ghost {
	background: #ffffff;
	color: #4b5563;
	border: 1px solid #e5e7eb;
}

	.btn-ghost:hover {
		background: #f9fafb;
	}

.small-pill {
	position: absolute;
	top: 18px;
	right: 24px;
	font-size: 11px;
	padding: 4px 8px;
	border-radius: 999px;
	background: #111827;
	color: #f9fafb;
	display: flex;
	align-items: center;
	gap: 4px;
}

.small-pill-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.card-inner {
	position: relative;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

@media (max-width: 960px) {
	.app-shell {
		max-width: 960px;
	}

	.card {
		padding: 24px 18px;
	}

	.card-body {
		padding: 24px 18px;
	}
}

@media (max-width: 768px) {
	body {
		padding: 12px;
	}

	.app-shell {
		flex-direction: column;
		align-items: center;
	}

	.sidebar {
		flex-direction: row;
		width: 100%;
		max-width: none;
		height: auto;
		padding: 12px 16px;
		border-radius: 20px;
		justify-content: space-between;
	}

	.sidebar-logo {
		margin-bottom: 0;
	}

	.sidebar-pill {
		margin-top: 0;
	}

	.card-header {
		font-size: 14px;
		padding-inline: 14px;
	}

	.title {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.card-body {
		padding: 20px 14px;
	}

	.title {
		font-size: 18px;
	}

	.subtitle {
		font-size: 13px;
	}
}body {
}
