:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f1f36;
  background: #f8fbff;
}
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body { margin: 0; }
body.login-page {
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 24px 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(46,125,91,.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faf9 55%, #eef5f2 100%);
  position: relative;
}
.background-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(14px);
  opacity: .45;
  pointer-events: none;
}.orb-one { width: 420px; height: 420px; left: -180px; bottom: -140px; background: #dfeae6; }
.orb-two { width: 380px; height: 380px; right: -150px; bottom: -80px; background: #e4ecef; }
.login-shell {
  width: min(100%, 540px);
  position: relative;
  z-index: 1;
}
.brand { text-align: center; margin-bottom: 28px; }
.brand-mark {
  display: inline-flex;
  align-items: end;
  gap: 8px;
  height: 58px;
  margin-bottom: 12px;
}
.brand-mark span {
  display: block;
  width: 18px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #3f7bea 0%, #1f5ed7 100%);
  box-shadow: 0 10px 25px rgba(37,99,235,.18);
}
.brand-mark span:nth-child(1) { height: 26px; }
.brand-mark span:nth-child(2) { height: 40px; }
.brand-mark span:nth-child(3) { height: 56px; }
.brand h1 { margin: 0; font-size: clamp(46px, 8vw, 72px); line-height: .95; letter-spacing: -.065em; font-weight: 760; }
.brand h1 span { color: #2f6fe4; }.brand p {
  margin: 12px 0 0;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 700;
  color: #7a8aa2;
}
.login-card {
  background: rgba(255,255,255,.92);
  border: 1px solid #e2e8f0;
  box-shadow: 0 22px 60px rgba(15,31,54,.10);
  border-radius: 24px;
  padding: 34px;
  backdrop-filter: blur(12px);
}
.login-card h2 { margin: 0; text-align: center; font-size: 30px; letter-spacing: -.03em; }
.intro { margin: 10px 0 26px; text-align: center; color: #687892; line-height: 1.5; }
.auth-note {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid #dce7f7;
  background: #f7faff;
  border-radius: 16px;
  margin-bottom: 18px;
}.shield {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e9f5ef;
  color: #2E7D5B;
  font-weight: 800;
}
.auth-note strong, .auth-note span { display: block; }
.auth-note strong { font-size: 14px; margin-bottom: 3px; }
.auth-note span { color: #718198; font-size: 13px; line-height: 1.4; }
.login-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #1F3A5C, #2E7D5B);
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(31,58,92,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}.login-button:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(31,58,92,.24); }
.login-button:focus-visible { outline: 3px solid rgba(46,125,91,.28); outline-offset: 3px; }
.helper { margin: 14px 4px 0; text-align: center; color: #8290a4; font-size: 12px; line-height: 1.5; }
footer {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  color: #7b899c;
  font-size: 12px;
}
.sep { opacity: .45; }
@media (max-width: 560px) {
  body.login-page { padding: 30px 16px 22px; }
  .login-card { padding: 26px 20px; border-radius: 20px; }
  .brand { margin-bottom: 22px; }
  .brand p { letter-spacing: .18em; font-size: 10px; }
  footer { margin-top: 22px; }
}
.brand-logo { width: min(430px, 88vw); height: auto; display: block; margin: 0 auto 18px; }
.finance-button { background: #1F3A5C; border-color: #1F3A5C; color: #2E7D5B !important; }
.finance-button:hover { background: #17304d; color: #2E7D5B !important; }
.login-card a, .login-card .link { color: #1F3A5C; }
