/* ============================================================
   LOGIN.CSS — HubPro Login Page
   Completely self-contained — no other CSS file needed
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:         #1A3A5C;
  --navy-light:   #21476E;
  --navy-dark:    #122B4A;
  --orange:       #FF6A00;
  --orange-dark:  #E05E00;
  --steel:        #A0B3C8;
  --green:        #22C55E;
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--steel);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.1; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input { font-family: inherit; font-size: inherit; }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TOP BAR ────────────────────────────────────────────────── */
.lg-topbar {
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.lg-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.lg-logo-icon { width: 32px; height: 32px; background-color: var(--orange); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: white; font-size: 14px; flex-shrink: 0; }
.lg-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; letter-spacing: 0.05em; transition: color 0.2s; }
.lg-logo:hover .lg-logo-text { color: var(--orange); }
.lg-join-link { font-size: 14px; font-weight: 500; color: var(--steel); text-decoration: none; transition: color 0.2s; }
.lg-join-link:hover { color: var(--orange); }
.lg-join-link span { color: var(--orange); font-weight: 700; }

/* ── MAIN CONTENT ───────────────────────────────────────────── */
.lg-main {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1rem;
}
.lg-inner {
  width: 100%; max-width: 64rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .lg-inner { grid-template-columns: 1fr 1fr; } }

/* ── LEFT SIDE (value props) ────────────────────────────────── */
.lg-left { display: none; }
@media (min-width: 1024px) { .lg-left { display: block; } }

.lg-overline { display: block; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--orange); margin-bottom: 1rem; }
.lg-h1 { font-family: var(--font-display); font-size: 3.25rem; font-weight: 700; color: white; line-height: 1.1; margin-bottom: 1.5rem; }
.lg-h1 span { color: var(--orange); }
.lg-desc { color: var(--steel); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2.5rem; }

.lg-features { display: flex; flex-direction: column; gap: 1.5rem; }
.lg-feature { display: flex; align-items: flex-start; gap: 1rem; }
.lg-feature-icon { width: 2.5rem; height: 2.5rem; background-color: rgba(255,106,0,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lg-feature-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: white; }
.lg-feature-desc { font-size: 14px; color: var(--steel); }

.lg-quick-access {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.lg-quick-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--steel); margin-bottom: 1rem; display: block; }
.lg-quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.lg-quick-link {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  background-color: rgba(33,71,110,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
}
.lg-quick-link:hover { border-color: rgba(255,106,0,0.3); background-color: rgba(255,106,0,0.05); }
.lg-quick-icon { color: var(--steel); transition: color 0.2s; }
.lg-quick-link:hover .lg-quick-icon { color: var(--orange); }
.lg-quick-text { font-size: 12px; font-weight: 500; color: var(--steel); transition: color 0.2s; }
.lg-quick-link:hover .lg-quick-text { color: white; }

/* ── RIGHT SIDE (form card) ─────────────────────────────────── */
.lg-card {
  background-color: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
@media (min-width: 768px) { .lg-card { padding: 2.5rem; } }

.lg-card-top { text-align: center; margin-bottom: 2rem; }
.lg-card-icon { width: 3.5rem; height: 3.5rem; background-color: var(--orange); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: white; }
.lg-card-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: white; }
.lg-card-sub { font-size: 14px; color: var(--steel); margin-top: 0.5rem; }

/* Form */
.lg-form { display: flex; flex-direction: column; gap: 1.25rem; }
.lg-field label { display: block; font-size: 14px; font-weight: 600; color: white; margin-bottom: 0.5rem; }
.lg-field-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.lg-forgot { font-size: 12px; color: var(--orange); text-decoration: none; transition: color 0.2s; }
.lg-forgot:hover { color: var(--orange-dark); }

.lg-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: rgba(26,58,92,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  color: white;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lg-input::placeholder { color: rgba(160,179,200,0.5); }
.lg-input:focus { border-color: rgba(255,106,0,0.5); box-shadow: 0 0 0 3px rgba(255,106,0,0.1); }

.lg-pw-wrap { position: relative; }
.lg-pw-wrap .lg-input { padding-right: 3rem; }
.lg-pw-toggle {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  color: var(--steel); background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s; padding: 0.25rem;
}
.lg-pw-toggle:hover { color: white; }

.lg-remember { display: flex; align-items: center; gap: 0.5rem; }
.lg-remember input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--orange);
  border-radius: 3px;
  cursor: pointer;
}
.lg-remember label { font-size: 14px; color: var(--steel); cursor: pointer; }

.lg-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem;
  background-color: var(--orange); color: white;
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; letter-spacing: 0.05em;
  border-radius: 0.5rem; border: none; cursor: pointer;
  transition: all 0.2s;
}
.lg-submit:hover { background-color: var(--orange-dark); box-shadow: 0 20px 40px rgba(255,106,0,0.25); }

.lg-signup { text-align: center; margin-top: 1.5rem; font-size: 14px; color: var(--steel); }
.lg-signup a { color: var(--orange); font-weight: 600; transition: color 0.2s; }
.lg-signup a:hover { color: var(--orange-dark); }

.lg-trust {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
}
.lg-trust-item { display: flex; align-items: center; gap: 0.375rem; font-size: 12px; color: var(--steel); }
.lg-trust-icon { color: var(--green); flex-shrink: 0; }

/* ── BOTTOM BAR ─────────────────────────────────────────────── */
.lg-bottombar {
  padding: 1rem;
  text-align: center;
  font-size: 12px;
  color: rgba(160,179,200,0.5);
  flex-shrink: 0;
}
