﻿:root {
	--bg: #f3f4f6; /* light gray page background */
	--card: #ffffff; /* white card */
	--text: #1f2937; /* near-black */
	--brand: #1e88e5; /* primary button/link blue */
	--brand-dark: #156fbd;
	--shadow: 0 28px 60px rgba(17, 24, 39, 0.16);
	--radius: 14px;
	--radius-inner: 12px;
}

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
	color: var(--text);
	background: var(--bg);
	display: grid;
	place-items: center;
	padding: 32px 18px;
}

.shell {
	/*width: min(1100px, 100%);*/
	width: 60%;
	background: var(--card);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.left-panel {
	padding: 1px;
	background: var(--card);
	display: grid;
	place-items: center;
}

.left-panel-frame {
	width: 100%;
	height: 100%;
	border-radius: var(--radius-inner);
	overflow: hidden;
	background: #111827;
	position: relative;
	/*min-height: 520px;*/
}

	.left-panel-frame img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

.right-panel {
	padding: 46px 56px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
}

.site-promo-image {
}

.site-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
}

.site-logo {
	height: 34px;
	width: auto;
	display: block;
}

.site-title {
	font-size: 30px;
	font-weight: 300;
	letter-spacing: 0.2px;
	color: #2a89c5;
	line-height: 1.1;
	white-space: nowrap;
}

.login-button-div {
	text-align: right;
}