/* backup of public/style.css created before migrating to Vite */
/* ============================================================
   RESET & VARIABLES
============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, Helvetica, sans-serif; background:#f0f4fd; color:#222; min-height:100vh; }

:root {
	--blue:       #0b57d0;
	--dark-blue:  #1644a5;
	--light-blue: #eef3ff;
	--muted:      #666;
	--border:     #e0e0e0;
	--white:      #fff;
	--bg:         #f0f4fd;
	--shadow:     0 2px 10px rgba(0,0,0,0.08);
}

/* ============================================================
   TOP NAVBAR
============================================================ */
.top-navbar {
	display: none;
}
@media(min-width:768px){
	.top-navbar {
		display: flex;
		align-items: center;
		background: var(--white);
		border-bottom: 1px solid var(--border);
		padding: 0 32px;
		height: 60px;
		position: sticky; top:0; z-index:300;
		box-shadow: 0 1px 6px rgba(0,0,0,0.07);
		gap: 20px;
	}
	.navbar-brand {
		display:flex; align-items:center; gap:10px;
		text-decoration:none; flex-shrink:0;
	}
	.navbar-brand .nb-circle {
		width:36px; height:36px; border-radius:50%;
		background:var(--blue); color:#fff;
		display:flex; align-items:center; justify-content:center;
		font-size:15px;
	}
	.navbar-brand span { font-size:20px; font-weight:700; color:var(--dark-blue); }
	.navbar-search {
		flex:1; max-width:300px; position:relative;
	}
	.navbar-search input {
		width:100%; padding:8px 14px 8px 36px;
		border:1px solid var(--border); border-radius:24px;
		background:var(--light-blue); outline:none; font-size:13px;
	}
	.navbar-search .ns-icon {
		position:absolute; left:12px; top:50%; transform:translateY(-50%);
		color:var(--muted); font-size:13px; pointer-events:none;
	}
	.navbar-links {
		display:flex; align-items:center; gap:4px; margin-left:auto;
	}
	.navbar-links a {
		display:flex; flex-direction:column; align-items:center;
		text-decoration:none; color:var(--muted); font-size:11px;
		padding:6px 14px; border-radius:6px; gap:3px;
		transition:color .2s, background .2s; white-space:nowrap;
	}
	.navbar-links a i { font-size:19px; }
	.navbar-links a:hover { color:var(--blue); background:var(--light-blue); }
	.navbar-links a.active {
		color:var(--blue); font-weight:600;
		border-bottom:2px solid var(--blue);
	}
}

/* ============================================================
   PAGE LAYOUT — 3 COLUMNS ON DESKTOP
============================================================ */
.page-layout {
	width:100%; padding:16px 12px 80px; /* 80px bottom = mobile nav */
}
@media(min-width:768px){
	.page-layout {
		max-width:1160px; margin:24px auto;
		padding:0 20px 40px;
		display:grid;
		grid-template-columns:230px 1fr 270px;
		gap:20px;
		align-items:start;
	}
}
@media(min-width:1100px){
	.page-layout { grid-template-columns:250px 1fr 290px; }
}

/* ============================================================
   LEFT SIDEBAR
============================================================ */
.left-sidebar { display:none; }

@media(min-width:768px){
	.left-sidebar {
		display:flex; flex-direction:column; gap:14px;
		position:sticky; top:76px;
	}
	/* profile mini card */
	.sb-profile {
		background:var(--white); border-radius:14px;
		box-shadow:var(--shadow); overflow:hidden; text-align:center;
	}
	.sb-cover {
		height:56px;
		background:linear-gradient(135deg,#1644a5,#0b57d0);
	}
	.sb-avatar {
		width:64px; height:64px; border-radius:50%;
		border:3px solid var(--white);
		margin:-32px auto 10px;
		background:#c5d8ff; color:var(--dark-blue);
		display:flex; align-items:center; justify-content:center;
		font-size:24px;
	}
	.sb-profile h4 { font-size:14px; padding:0 12px; color:#222; }
	.sb-profile p  { font-size:12px; color:var(--muted); padding:4px 12px 14px; line-height:17px; }
	.sb-divider { border:none; border-top:1px solid var(--border); margin:0 12px; }
	.sb-stat {
		display:flex; justify-content:space-between; align-items:center;
		padding:9px 14px; font-size:12px; color:var(--muted);
		text-decoration:none; transition:background .2s;
	}
	.sb-stat:hover { background:var(--light-blue); }
	.sb-stat strong { color:var(--blue); font-size:13px; }

	/* nav links card */
	.sb-nav {
		background:var(--white); border-radius:14px;
		box-shadow:var(--shadow); padding:8px 0;
	}
	.sb-nav a {
		display:flex; align-items:center; gap:11px;
		padding:11px 16px; text-decoration:none;
		color:#333; font-size:13px; font-weight:500;
		border-radius:8px; margin:2px 6px;
		transition:background .2s, color .2s;
	}
	.sb-nav a i { font-size:16px; color:var(--dark-blue); width:18px; text-align:center; }
	.sb-nav a:hover { background:var(--light-blue); color:var(--blue); }
	.sb-nav a.active {
		background:var(--light-blue); color:var(--blue); font-weight:700;
	}
	.sb-nav a.active i { color:var(--blue); }
}

/* ============================================================
   MAIN FEED COLUMN
============================================================ */
.main-col { display:flex; flex-direction:column; gap:14px; min-width:0; }

/* ============================================================
   RIGHT PANEL
============================================================ */
.right-panel { display:none; }

@media(min-width:768px){
	.right-panel {
		display:flex; flex-direction:column; gap:14px;
		position:sticky; top:76px;
	}
	.rp-card {
		background:var(--white); border-radius:14px;
		box-shadow:var(--shadow); padding:16px;
	}
	.rp-card h4 {
		font-size:14px; font-weight:700;
		color:var(--dark-blue); margin-bottom:12px;
	}
	.rp-item {
		display:flex; align-items:center; gap:10px;
		padding:8px 0; border-bottom:1px solid var(--border);
		cursor:pointer;
	}
	.rp-item:last-child { border-bottom:none; }
	.rp-icon {
		width:36px; height:36px; border-radius:50%;
		background:var(--light-blue); color:var(--dark-blue);
		display:flex; align-items:center; justify-content:center;
		font-size:14px; flex-shrink:0;
	}
	.rp-item h5 { font-size:12px; color:#222; margin-bottom:2px; }
	.rp-item p  { font-size:11px; color:var(--muted); }
	.rp-tag {
		display:inline-block; background:var(--light-blue);
		color:var(--blue); border-radius:20px;
		padding:4px 11px; font-size:12px;
		margin:3px 3px 3px 0; cursor:pointer;
		border:1px solid #c5d8ff;
	}
	.rp-tag:hover { background:#d6e8ff; }
}

/* ============================================================
   SHARED CARDS
============================================================ */
.card-white {
	background:var(--white); border-radius:14px;
	box-shadow:var(--shadow); padding:16px;
}
.section-title { font-size:16px; font-weight:700; color:var(--dark-blue); margin-bottom:12px; }

/* feed tabs */
.feed-tabs { display:flex; gap:10px; }
.feed-tabs button {
	flex:1; padding:10px 14px; border:none;
	background:#e8eefb; border-radius:28px;
	font-size:13px; cursor:pointer; color:var(--muted);
	font-weight:500; transition:.2s;
}
.feed-tabs button:hover { background:#d4e3ff; }
.feed-tabs .tab-active { background:var(--blue) !important; color:#fff !important; font-weight:700 !important; }

/* page header (mobile title bar) */
.page-header {
	display:flex; justify-content:space-between; align-items:center;
}
.page-header h2 { font-size:19px; color:var(--dark-blue); }
.page-header i  { font-size:19px; color:var(--dark-blue); cursor:pointer; }

/* create post */
.create-post { display:flex; flex-direction:column; gap:12px; }
.cp-row { display:flex; align-items:center; gap:10px; }
.cp-avatar {
	width:42px; height:42px; border-radius:50%;
	background:var(--light-blue); color:var(--dark-blue);
	display:flex; align-items:center; justify-content:center;
	font-size:17px; flex-shrink:0;
}
.cp-input {
	flex:1; padding:11px 18px; border:1px solid var(--border);
	border-radius:28px; outline:none; font-size:13px;
	background:#f6f8ff; cursor:pointer;
}
.cp-input:focus { border-color:var(--blue); background:#fff; }
.post-options {
	display:flex; justify-content:space-around;
	padding-top:10px; border-top:1px solid var(--border);
	flex-wrap:wrap; gap:6px;
}
.post-options span {
	display:flex; align-items:center; gap:5px;
	font-size:13px; color:var(--muted); cursor:pointer;
	padding:5px 10px; border-radius:8px; transition:.2s;
}
.post-options span:hover { background:var(--light-blue); color:var(--blue); }
.post-options i { color:var(--blue); }

/* post card */
.post-card { display:flex; flex-direction:column; gap:10px; }
.post-head  { display:flex; align-items:center; gap:11px; }
.post-av {
	width:44px; height:44px; border-radius:50%;
	background:var(--light-blue); color:var(--dark-blue);
	display:flex; align-items:center; justify-content:center;
	font-size:17px; flex-shrink:0;
}
.post-head h3 { font-size:14px; color:#222; margin-bottom:2px; }
.post-head p  { font-size:12px; color:var(--muted); }
.post-text { font-size:13px; line-height:22px; color:#444; }
.post-foot {
	display:flex; justify-content:space-between; align-items:center;
	padding-top:10px; border-top:1px solid var(--border);
	flex-wrap:wrap; gap:6px;
}
.post-foot span {
	display:flex; align-items:center; gap:5px;
	font-size:12px; color:var(--muted); cursor:pointer;
	padding:5px 10px; border-radius:8px; transition:.2s;
}
.post-foot span:hover { background:var(--light-blue); color:var(--blue); }

/* membership card */
.mem-card {
	display:flex; justify-content:space-between; align-items:center;
	background:var(--white); padding:15px 16px;
	border-radius:12px; box-shadow:var(--shadow);
	cursor:pointer; transition:.25s;
	border:1px solid transparent;
}
.mem-card:hover { transform:translateY(-2px); border-color:#c5d8ff; }
.mem-card h4 { font-size:14px; margin-bottom:4px; color:#222; font-weight:600; }
.mem-card p  { font-size:12px; color:#muted; }
.mem-card > i { font-size:15px; color:var(--dark-blue); flex-shrink:0; }

/* society about */
.society-about {
	background:var(--white); padding:16px;
	border-radius:12px; box-shadow:var(--shadow);
	border-left:4px solid var(--blue);
}
.society-about p { font-size:13px; line-height:22px; color:#444; }

/* event card */
.event-card {
	background:var(--white); border-radius:12px;
	box-shadow:var(--shadow); padding:14px;
	display:flex; gap:14px;
	border:1px solid transparent; transition:.2s;
}
.event-card:hover { border-color:#c5d8ff; transform:translateY(-2px); }
.ev-date {
	width:64px; min-width:64px; background:var(--dark-blue);
	color:#fff; border-radius:10px;
	display:flex; flex-direction:column;
	justify-content:center; align-items:center; padding:8px 0;
}
.ev-date h2 { font-size:24px; margin-bottom:2px; }
.ev-date p  { font-size:11px; letter-spacing:1px; }
.ev-info { flex:1; }
.ev-info h3 { font-size:14px; color:#222; margin-bottom:7px; font-weight:600; }
.ev-info p  { font-size:12px; color:var(--muted); margin-bottom:5px; }
.ev-info i  { color:var(--dark-blue); margin-right:5px; }
.ev-btn {
	margin-top:8px; padding:7px 16px;
	background:var(--dark-blue); color:#fff;
	border:none; border-radius:18px;
	cursor:pointer; font-size:12px; transition:.2s;
}
.ev-btn:hover { background:#0f2f85; }

/* recent event */
.recent-ev {
	background:var(--white); border-radius:12px;
	box-shadow:var(--shadow); padding:14px;
	display:flex; gap:12px; align-items:flex-start;
}
.recent-ev i  { font-size:17px; color:#22a86e; margin-top:2px; flex-shrink:0; }
.recent-ev p  { font-size:13px; color:#444; line-height:21px; }

/* profile card */
.profile-card {
	background:var(--white); border-radius:14px;
	box-shadow:var(--shadow); overflow:hidden;
}
.prof-cover { height:90px; background:linear-gradient(135deg,#1644a5,#0b57d0); }
.prof-info  { padding:0 20px 20px; text-align:center; }
.prof-av-wrap {
	width:96px; height:96px; border-radius:50%;
	border:4px solid var(--white);
	margin:-48px auto 12px;
	background:#c5d8ff; color:var(--dark-blue);
	display:flex; align-items:center; justify-content:center;
	font-size:34px; overflow:hidden;
}
.prof-av-wrap img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.prof-info h2  { font-size:20px; color:#222; margin-bottom:5px; }
.prof-info .designation { font-size:13px; color:var(--muted); margin-bottom:4px; }
.prof-info .affiliation  { font-size:12px; color:#888; margin-bottom:14px; }
.badge {
	display:inline-block; background:var(--dark-blue); color:#fff;
	padding:5px 16px; border-radius:28px;
	font-size:12px; font-weight:600; margin-bottom:8px;
}
.member-id { font-size:12px; color:#999; }
.prof-btns { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:16px; }
.btn-primary {
	padding:8px 20px; background:var(--dark-blue); color:#fff;
	border:none; border-radius:8px; cursor:pointer;
	font-size:13px; font-weight:600; transition:.2s;
}
.btn-primary:hover { background:#0f2f85; }
.btn-outline {
	padding:8px 20px; background:var(--white); color:var(--dark-blue);
	border:2px solid var(--dark-blue); border-radius:8px;
	cursor:pointer; font-size:13px; font-weight:600; transition:.2s;
}
.btn-outline:hover { background:var(--light-blue); }

/* info card rows */
.info-card { display:flex; flex-direction:column; }
.info-row {
	display:flex; justify-content:space-between; align-items:center;
	padding:11px 0; border-bottom:1px solid #f0f0f0; font-size:13px;
}
.info-row:last-child { border-bottom:none; }
.info-row span { color:var(--muted); }
.info-row strong { color:#222; }

/* service grid */
.service-grid {
	display:grid; grid-template-columns:repeat(2,1fr); gap:12px;
}
.svc-card {
	background:var(--white); border-radius:12px;
	padding:20px 12px; text-align:center;
	box-shadow:var(--shadow); cursor:pointer; transition:.25s;
	border:1px solid transparent;
}
.svc-card:hover { transform:translateY(-4px); border-color:#c5d8ff; }
.svc-card i { font-size:28px; color:var(--dark-blue); display:block; margin-bottom:10px; }
.svc-card h4 { font-size:12px; color:#333; line-height:18px; font-weight:600; }

/* ============================================================
   MOBILE BOTTOM NAV
============================================================ */
.bottom-nav {
	position:fixed; bottom:0; left:0; right:0;
	display:flex; justify-content:space-around;
	padding:10px 0; background:var(--white);
	border-top:1px solid var(--border);
	z-index:200; box-shadow:0 -2px 8px rgba(0,0,0,0.06);
}
.bottom-nav a {
	display:flex; flex-direction:column; align-items:center;
	text-decoration:none; font-size:10px; color:var(--muted);
	padding:4px 10px; transition:.2s;
}
.bottom-nav i { font-size:19px; margin-bottom:3px; }
.bottom-nav a.active { color:var(--blue); font-weight:600; }
@media(min-width:768px){ .bottom-nav { display:none; } }

/* ============================================================
   LOGIN & INTEREST FORM STYLES
============================================================ */
.login-wrap {
	width:100%; min-height:100vh;
	display:flex; align-items:stretch;
}
.login-left { display:none; }
@media(min-width:768px){
	.login-left {
		display:flex; flex:1;
		flex-direction:column; justify-content:center; align-items:center;
		background:linear-gradient(145deg,#0b3fa8,#1b6ef3);
		color:#fff; padding:60px 50px;
	}
	.login-left .ll-brand { display:flex; align-items:center; gap:12px; margin-bottom:42px; }
	.login-left .ll-brand .nb-circle { width:52px; height:52px; font-size:22px; background:rgba(255,255,255,.2); border:2px solid rgba(255,255,255,.4); }
	.login-left .ll-brand span { font-size:30px; font-weight:700; }
	.login-left h2 { font-size:30px; line-height:42px; margin-bottom:16px; font-weight:700; text-align:center; }
	.login-left p  { font-size:15px; opacity:.85; line-height:24px; text-align:center; max-width:360px; }
}
.login-right {
	width:100%; padding:40px 28px;
	display:flex; flex-direction:column; justify-content:center;
	background:var(--white);
}
@media(min-width:768px){ .login-right { width:440px; padding:60px 48px; } }
.login-title    { text-align:center; color:var(--blue); font-size:26px; margin-bottom:6px; }
.login-subtitle { text-align:center; color:var(--muted); font-size:14px; margin-bottom:24px; }
.tabs { display:flex; margin-bottom:24px; border-bottom:2px solid var(--border); }
.tabs button {
	flex:1; border:none; background:transparent;
	padding:13px; cursor:pointer; font-size:14px;
	color:var(--muted); font-weight:500; transition:.2s;
}
.tab-active { color:var(--blue) !important; border-bottom:3px solid var(--blue) !important; font-weight:700 !important; }
.input-box {
	display:flex; align-items:center;
	border:1.5px solid var(--border); border-radius:10px;
	padding:12px 14px; margin-bottom:14px; transition:.2s;
}
.input-box:focus-within { border-color:var(--blue); }
.input-box i { color:#aaa; font-size:14px; }
.input-box input {
	flex:1; border:none; outline:none;
	margin-left:10px; font-size:14px; color:#222;
}
.login-opts {
	display:flex; justify-content:space-between; align-items:center;
	font-size:13px; margin:12px 0; flex-wrap:wrap; gap:8px;
}
.login-opts label { display:flex; align-items:center; gap:6px; cursor:pointer; color:var(--muted); }
.login-opts a { color:var(--blue); text-decoration:none; font-weight:500; }
.login-btn {
	width:100%; border:none; background:var(--blue);
	color:#fff; padding:13px; border-radius:10px;
	cursor:pointer; font-size:15px; font-weight:600; transition:.2s;
}
.login-btn:hover { background:#0848aa; }
.divider { display:flex; align-items:center; margin:22px 0; gap:10px; }
.divider span { flex:1; height:1px; background:var(--border); }
.divider p { color:var(--muted); font-size:12px; white-space:nowrap; }
.social-row { display:flex; gap:10px; }
.soc-btn {
	flex:1; padding:10px; border:1.5px solid var(--border);
	border-radius:10px; background:#fff; cursor:pointer;
	font-size:13px; display:flex; align-items:center;
	justify-content:center; gap:7px; transition:.2s; font-weight:500;
}
.soc-btn:hover { background:var(--light-blue); border-color:var(--blue); }

/* interest */
.interest-wrap {
	max-width:680px; margin:40px auto; padding:0 16px 40px;
}
.interest-box { background:var(--white); border-radius:14px; box-shadow:var(--shadow); padding:36px 32px; }
.interest-title    { text-align:center; color:var(--blue); font-size:24px; font-weight:700; margin-bottom:6px; }
.interest-subtitle { text-align:center; color:var(--muted); font-size:13px; margin-bottom:24px; line-height:20px; }
.interest-grid { display:grid; grid-template-columns:1fr; gap:10px; }
@media(min-width:600px){ .interest-grid { grid-template-columns:repeat(2,1fr); } }
.interest-item {
	display:flex; align-items:center;
	background:#f5f7fb; border:1.5px solid var(--border);
	border-radius:10px; padding:12px 14px;
	cursor:pointer; font-size:13px; transition:.2s;
	font-weight:500; color:#222;
}
.interest-item:hover { background:#edf4ff; border-color:var(--blue); }
.interest-item input { width:16px; height:16px; margin-right:10px; flex-shrink:0; accent-color:var(--blue); }
.interest-item i { margin-right:8px; color:var(--dark-blue); font-size:15px; }
.continue-btn {
	width:100%; max-width:280px; display:block; margin:28px auto 0;
	padding:13px; border:none; border-radius:10px;
	background:var(--blue); color:#fff;
	font-size:15px; font-weight:600; cursor:pointer; transition:.2s;
}
.continue-btn:hover { background:#0848aa; }

/* index / splash */
.splash-wrap {
	width:100%; min-height:100vh;
	display:flex; align-items:stretch;
}
.splash-left {
	flex:1; background:linear-gradient(145deg,#0b3fa8,#1b6ef3);
	display:flex; flex-direction:column;
	justify-content:center; align-items:center;
	padding:60px 50px; color:#fff;
}
.splash-right {
	width:100%; max-width:440px;
	display:flex; flex-direction:column;
	justify-content:center; align-items:center;
	padding:50px 40px; background:var(--white);
}
@media(max-width:767px){
	.splash-left { display:none; }
	.splash-right { max-width:100%; }
}
.splash-logo { display:flex; align-items:center; gap:12px; margin-bottom:36px; }
.splash-logo .nb-circle { width:56px; height:56px; font-size:24px; background:rgba(255,255,255,.2); border:2px solid rgba(255,255,255,.4); }
.splash-logo span { font-size:32px; font-weight:700; }
.splash-left h1 { font-size:38px; line-height:50px; font-weight:800; margin-bottom:18px; text-align:center; }
.splash-left p  { font-size:15px; opacity:.88; line-height:26px; text-align:center; max-width:400px; }
.feature-list { margin-top:36px; display:flex; flex-direction:column; gap:14px; width:100%; max-width:400px; }
.feature-item {
	display:flex; align-items:center; gap:14px;
	background:rgba(255,255,255,.12); border-radius:12px;
	padding:14px 18px; border:1px solid rgba(255,255,255,.2);
}
.feature-item i { font-size:20px; width:40px; height:40px; background:rgba(255,255,255,.2); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.feature-item h3 { font-size:14px; margin-bottom:3px; }
.feature-item p  { font-size:12px; opacity:.8; }
.splash-right h2 { font-size:26px; color:var(--dark-blue); font-weight:700; margin-bottom:6px; }
.splash-right p  { color:var(--muted); font-size:13px; margin-bottom:28px; }
.cta-btn {
	display:block; width:100%; padding:14px;
	background:var(--blue); color:#fff;
	border:none; border-radius:10px; text-align:center;
	font-size:15px; font-weight:600; cursor:pointer;
	text-decoration:none; margin-bottom:12px; transition:.2s;
}
.cta-btn:hover { background:#0848aa; }
.cta-outline {
	display:block; width:100%; padding:13px;
	background:#fff; color:var(--blue);
	border:2px solid var(--blue); border-radius:10px;
	text-align:center; font-size:15px; font-weight:600;
	text-decoration:none; cursor:pointer; transition:.2s;
}
.cta-outline:hover { background:var(--light-blue); }

/* mobile splash (when desktop left is hidden) */
.mobile-splash {
	padding:36px 24px 80px;
	background:var(--white); min-height:100vh;
}
.ms-logo { text-align:center; margin-bottom:28px; }
.ms-logo .ms-circle { width:76px; height:76px; background:var(--blue); color:#fff; border-radius:50%; margin:0 auto 14px; display:flex; align-items:center; justify-content:center; font-size:30px; }
.ms-logo h1 { font-size:32px; color:var(--dark-blue); font-weight:700; }
.ms-heading { text-align:center; margin-bottom:28px; }
.ms-heading h2 { font-size:24px; color:var(--dark-blue); line-height:34px; margin-bottom:14px; }
.ms-heading p  { font-size:14px; color:var(--muted); line-height:22px; }
.ms-card {
	display:flex; align-items:center; gap:14px;
	background:#f7f9ff; border-radius:12px;
	padding:14px; margin-bottom:14px; border:1px solid #e5ecff;
}
.ms-card .mc-icon { width:48px; height:48px; min-width:48px; background:#dfeaff; color:var(--blue); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; }
.ms-card h3 { font-size:15px; color:var(--dark-blue); margin-bottom:4px; }
.ms-card p  { font-size:13px; color:#muted; line-height:19px; }
.ms-dots { display:flex; justify-content:center; gap:7px; margin-top:28px; }
.ms-dots span { width:9px; height:9px; background:#ccc; border-radius:50%; }
.ms-dots .dot-active { background:var(--blue); width:26px; border-radius:5px; }

/* small phones */
@media(max-width:380px){
	.service-grid { grid-template-columns:1fr; }
}

/* ============================================================
   SCRS+ BRAND SUPERSCRIPT
============================================================ */
.brand-plus {
	font-size: 0.52em;
	font-weight: 900;
	color: #f59e0b;
	vertical-align: super;
	line-height: 0;
	letter-spacing: 0;
	text-shadow: none;
}

/* on dark/blue backgrounds keep gold */
.splash-left .brand-plus,
.login-left  .brand-plus { color: #fcd34d; }

/* splash-right heading */
.splash-right h2 sup,
.ms-logo h1 sup { font-size: 0.45em; color: #f59e0b; font-weight: 900; vertical-align: super; }
