body.auth-page {
	background: #ffffff;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
}

.auth-shell {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 60px 0;
}

.auth-card {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	background: #fff;
	border-radius: 12px;
	padding: 28px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.auth-card--wide {
	max-width: 1100px;
}

.auth-top-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	text-decoration: none;
	color: inherit;
}

.upload-hint {
	font-size: 14px;
	color: #666;
	margin-top: 6px;
}

.photo-thumb {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 10px;
	background: #f2f2f2;
}

