﻿/*--
    Error page (Error.aspx)
    Standalone — no master page — so this file has no shared dependency
    on main.css/admin.css. Kept intentionally small and self-contained.
--*/
body
{
	margin: 0;
	font-family: 'Inter', sans-serif;
	background: #fff;
	color: #2E2E2E;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: center;
	padding: 24px;
}

.error-logo
{
	max-width: 160px;
	margin-bottom: 32px;
}

h1
{
	font-family: 'Montserrat', sans-serif;
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 12px;
}

p
{
	font-size: 15px;
	color: #6b6b6b;
	max-width: 480px;
	margin: 0 0 28px;
}

.btn-home
{
	display: inline-block;
	background: #FF4F02;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	padding: 14px 32px;
	border-radius: 4px;
}

	.btn-home:hover
	{
		background: #ff530a;
	}
