:root {
  --gb-color-primary: #1daa61;
  --gb-color-primary-hover: #159b79;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}


#primary {
    margin: 0;
    padding: 0;
}

.mv-page-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.mv-page-wrapper .mv-page-container {
    margin: 0 auto;
}
/* Wrapper */
.dp-login-wrap {
    display:flex;
    justify-content:center;
    padding:30px 16px;
}

/* Card */
.dp-login-gate {
    text-align:center;
    padding:28px 20px;
    border-radius:14px;
    background:#ffffff;
    width:100%;
    max-width:420px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    border:1px solid #eef2f7;
}

/* Icon */
.dp-login-icon {
    font-size:34px;
    margin-bottom:6px;
}

/* Heading */
.dp-login-gate h3 {
    margin:6px 0;
    font-size:20px;
    line-height:1.3;
    color:#0f172a;
}

/* Subtext */
.dp-subtext {
    color:#64748b;
    font-size:14px;
    margin-bottom:20px;
}

/* Buttons container */
.dp-login-actions {
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* Buttons (big tap targets) */
.dp-login-btn,
.dp-signup-btn {
    display:block;
    padding:14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
}

/* Primary */
.dp-login-btn {
    background:#1daa61;
    color:#fff;
}

/* Secondary */
.dp-signup-btn {
    background:#f1f5f9;
    color:#0f172a;
    border:1px solid #e2e8f0;
}

/* Trust text */
.dp-trust {
    font-size:12px;
    color:#94a3b8;
    margin-top:14px;
}

/* Slight desktop enhancement */
@media (min-width:768px) {
    .dp-login-wrap {
        padding:60px 20px;
    }

    .dp-login-gate {
        padding:40px;
    }

    .dp-login-gate h3 {
        font-size:22px;
    }
}

/* Base Notice */
.notice {
  width: 90%;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 14px auto !important;
  border-left: 6px solid transparent;
  background: #f9fafb;
  color: #1f2937;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
  position: relative;
  display: block;
  padding-left: 42px; /* space for icon */
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

/* Icon bubble */
.notice::before {
  content: "ℹ️";
  font-size: 18px;
  opacity: .9;
  position: absolute;
  left: 14px;
  top: 14px;
}

/* Info */
.notice-info {
  border-left-color: #3b82f6;
  background: #eff6ff;
}

/* Warning */
.notice-warn {
  border-left-color: #f59e0b;
  background: #fff7ed;
}

.notice-warn::before {
  content: "⚠️";
}

/* Error */
.notice-error {
  border-left-color: #ef4444;
  background: #fef2f2;
}

.notice-error::before {
  content: "❌";
}

/* Success */
.notice-success {
  border-left-color: #10b981;
  background: #ecfdf5;
}

.notice-success::before {
  content: "🎉";
}

/* Links inside notice */
.notice a {
  color: #083c71;
  font-weight: 600;
  text-decoration: underline;
}

.notice a:hover {
  text-decoration: none;
}

/* List styling inside notices */
.notice ul {
  margin: 8px 0 0 0;
  padding-left: 0;
}

.notice-list li {
  list-style: none;
  margin: 6px 0;
  padding-left: 26px;
  position: relative;
}

/* Success / learning vibe ticks */
.notice-success .notice-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  color: #10b981;
  font-weight: bold;
}

.sis-quote-box {
  text-align: center;
  font-size: 15px;
  color: #9ca3af;
  background: rgba(8,60,113,.1);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 16px;
  font-style: italic;
}

/* Wrapper */
.sis-nav-wrap {
  width: min(90vw, 1100px);
  margin: 1.5rem auto;
}

/* Wrapper */
.sis-switch-wrap{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  user-select:none;
}

/* Labels */
.switch-label{
  font-size:14px;
  color:#374151;
  font-weight:500;
}

/* Toggle track */
.sis-toggle{
  width:52px;
  height:28px;
  background:#e5e7eb;
  border-radius:999px;
  position:relative;
  display:inline-block;
  transition:background .25s ease;
  text-decoration:none;
}

/* Active */
.sis-toggle.is-mf{
  background:#1daa61;
}

/* Knob */
.sis-toggle-knob{
  position:absolute;
  top:3px;
  left:3px;
  width:22px;
  height:22px;
  background:#fff;
  border-radius:50%;
  box-shadow:0 2px 6px rgba(0,0,0,.18);
  transition:transform .25s ease;
}

.sis-toggle.is-mf .sis-toggle-knob{
  transform:translateX(24px);
}


/* Navigation bar */
.sis-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: .25rem;
  background: #f3f4f6; /* soft neutral */
  border-radius: 999px; /* full pill */
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

/* Links */
.sis-nav a {
  flex: 1 1 0;
  text-align: center;
  padding: .7rem 1rem;
  text-decoration: none;
  color: rgba(0,0,0,0.7);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.25s ease;
  border-radius: 999px;
}
.sis-nav a:hover {
  background: rgba(29,170,97,.08);
  color: #1daa61;
}

/* Active tab */
.sis-nav a.is-active {
  background: #1daa61;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(29,170,97,.25);
}

.sis-cta {
  margin-top: 18px;
  text-align: center;
}

.sis-cta a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  background: #111827;
  color: #fff;
  transition: all .25s ease;
}

.sis-cta a:hover {
  background: #000;
  transform: translateY(-2px);
}

.sis-beta-note {
  background: rgba(29,170,97,.08);
  border: 1px solid rgba(29,170,97,.25);
  padding: 10px 14px;
  border-radius: 10px;
  margin: 12px 0 16px;
  font-size: 13px;
  color: #065f46;
}

.sis-beta-note a {
  color: #1daa61;
  font-weight: 600;
  text-decoration: none !important;
}

.sis-beta-note a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .sis-nav-wrap {
    width: 94vw;
    margin: 1rem auto;
  }
  
  .sis-switch-wrap {
    gap: 8px;
  }

  .switch-label {
    font-size: 13px;
  }

  .sis-toggle {
    width: 46px;
    height: 24px;
  }

  .sis-toggle-knob {
    width: 18px;
    height: 18px;
    top: 3px;
    left: 3px;
  }

  .sis-toggle.is-mf .sis-toggle-knob {
    transform: translateX(20px);
  }
  
  .sis-nav {
    justify-content: flex-start;  
    gap: .5rem;
    padding: 4px;
  }

  .sis-nav a {
    flex: 0 0 auto;  
    padding: .6rem .9rem;
    font-size: 14px;
    min-width: 110px;
  }
  
  .sis-cta {
    margin-top: 14px;
  }

  .sis-cta a {
    padding: 9px 18px;
    font-size: .9rem;
  }
  
  .sis-beta-note {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 8px;
  }
}

#myCustomScrollTop {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 9999;

    /* PERFECT CIRCLE SIZE */
    width: 50px;
    height: 50px;
    border-radius: 50%;

    /* Center icon perfectly */
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    outline: none;
    border: 1px solid rgba(255,255,255,0.12);

    /* Finance look */
    background: #0f1720;
    color: #2ecc71;

    /* Hidden by default */
    opacity: 0;
    pointer-events: none;

    /* Premium depth */
    box-shadow:
        0 10px 24px rgba(0,0,0,0.35),
        inset 0 0 0 1px rgba(255,255,255,0.05);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

/* Show */
#myCustomScrollTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-4px);
}

/* Hover */
#myCustomScrollTop:hover {
    background: #111c26;
    box-shadow:
        0 14px 30px rgba(0,0,0,0.45);
}

/* Click press */
#myCustomScrollTop:active {
    transform: scale(0.92);
}

/* Icon */
#myCustomScrollTop i {
    font-size: 18px;
    line-height: 1;
}

.header-nav ul,
.header-nav ol,
.header-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}


/* ------------------------------------------------
   BLACK/WHITE HEADER STYLES + GREEN LOGO ACCENT
   - adds "Portfolio" & "Mutual Funds" buttons inline
   - login/register inside desktop menu (as requested)
   - fully responsive, preserves php logic
   - designed to be dropped into a WordPress environment
------------------------------------------------ */
/* Modern reset & base (scoped to header, but uses global classes) */
.header-nav * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header-nav {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 20, 40, 0.05);
    position: relative;
    width: 100%;
    z-index: 1000;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
}
.logo img {
    max-height: 42px;
    width: auto;
    display: block;
}

/* Header right: menu + toggle + userbox */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Main menu (desktop) */
.menu {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.main-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.main-menu li a:hover {
    color: #1daa61;
}

/* Dropdown */
.main-menu .dropdown {
    position: relative;
}

.dropdown > a .dropdown-arrow {
    transition: transform 0.2s;
    margin-left: 0.2rem;
}

.dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: #333;
    min-width: 220px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s ease;
    border: 1px solid #edf2f7;
    z-index: 100;
}

.dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    padding: 0.8rem 1.2rem;
    color: #fff;
    font-weight: 400;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.sub-menu li a:hover {
    background-color: #1daa61;
    color: #fff;
}

/* Menu buttons (login/register/portfolio) */
/* ================= HEADER ACTION BUTTONS ================= */

.menu-btn a {
    padding: 0.5rem 1.3rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Login - transparent */
.login-btn a {
    background: transparent;
    border: 1.5px solid #d9e2ec;
    color: #1e2b3c;
}

.login-btn a:hover {
    background: #f4f7fb;
    border-color: #1daa61;
    color: #1daa61;
}

/* Register & Portfolio - green primary */
.main-menu .register-btn > a,
.main-menu .portfolio-btn > a {
    background: #1daa61;
    color: #ffffff;
    border: none;
}

.main-menu .register-btn > a:hover,
.main-menu .portfolio-btn > a:hover {
    background: #179c57;
    color: #ffffff;
}

/* User box (logged in) */
.sis-userbox {
    position: relative;
}

.user-dd {
    position: relative;
}

.user-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #1e2f40;
    display: flex;
    align-items: center;
    padding: 0.2rem;
    border-radius: 40px;
    transition: background 0.15s;
}

.user-dropdown-toggle:hover {
    background: #f0f4fa;
}

.user-dd .user-submenu {
    position: absolute;
    right: 0;
    left: auto;
    min-width: 170px;
    top: calc(100% + 0.7rem);
}

.user-dd:hover .user-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* mobile menu toggle buttons */
.open-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #1e2f40;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 8px;
}

.head {
    display: none;
}

.close-menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #4a5568;
    padding: 0.5rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .header-container {
        padding: 0.6rem 1rem;
    }

    .open-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        order: 2;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #0a0a0a;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 2000;
        padding: 1.2rem 0;
        display: block;
        overflow-y: auto;
    }

    .menu.active {
        right: 0;
    }

    .head {
        display: flex;
        justify-content: flex-end;
        padding: 0 1rem 1rem 1rem;
        border-bottom: 1px solid #eef2f6;
        margin-bottom: 1rem;
    }

    .main-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0 1rem;
    }

    .main-menu li {
        width: 100%;
    }

    .main-menu li a {
        margin: 0 10px;
        padding: 0.7rem 0.5rem;
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem;
        color: #fefefe;
        border-bottom: 1px solid #222;
    }

    .dropdown .sub-menu{
        display:none;
    }
    
    .dropdown.open .sub-menu{
        display:block;
    }

    .dropdown .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #1a1a1a;
        margin: 0.5rem 0 0.5rem 1rem;
        padding: 0.5rem 0;
        border-left: 2px solid #2ecc71;
        display: none;
    }

    .dropdown .sub-menu li a {
        padding: 0.6rem 1rem;
    }

    .menu-btn {
        margin-top: 0.75rem;
        width: 100%;
    }
    
    .menu-btn a {
        display: flex;
        justify-content: flex-start;   /* align content left */
        align-items: center;
        width: 100%;
        padding: 0.75rem 1rem;          /* proper mobile padding */
        border-radius: 10px;            /* less rounded for sidebar look */
    }
    
    .login-btn a,
    .register-btn a,
    .portfolio-btn a {
        border-radius: 10px;
    }

    /* User dropdown in mobile: keep clickable but we rely on hover? we adjust for touch */
    .sis-userbox .user-submenu {
        position: absolute; /* keep as is */
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 34px;
    }
    .header-container {
        padding: 0.5rem 0.75rem;
    }
    .menu {
        width: 85%;
        right: -85%;
    }
}

.page-container {
  width: 100%;    
  display: flex;
  justify-content: center; /* centers content + sidebar */
  gap: 10px;
  margin: 0 10px;
}

.main-content {
    flex: 0 0 85%;   /* content takes 80% */
  max-width: 85%;
}

@media (max-width: 480px) {
    .page-container {
        margin: 0;
    }
    .main-content {
        flex: 1 1 90%;
        max-width: 90%;
        margin: 0 auto;
    }
}

.page-wrapper-block {
  display: block;
  width: 90%;
  margin: 0 auto;
  justify-content: flex-start;
}

.page-wrapper-flex {
  display: flex;
  flex: 0 0 90%;   /* content takes 80% */
  max-width: 90%;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: nowrap;    
  align-items: stretch; 
}

.page-wrapper-flex-70 {
  display: flex;
  width: 70%;           
  margin: 0 auto;
  gap: 30px;
  flex-wrap: nowrap;    
  align-items: stretch;
}

.section-flex-full {
  display: flex;
  width: 100%;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 50px;
}

.wrapper-box {
  background-color: #ffffff;
  padding: 20px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.wrapper-box-90 { width: 90%; }


.flex-15 { width: 15%; }
.flex-20 { width: 20%; }
.flex-30 { width: 30%; }
.flex-35 { width: 35%; } 
.flex-40 { width: 40%; }
.flex-50 { width: 50%; }
.flex-60 { width: 60%; }
.flex-70 { width: 70%; }
.flex-75 { width: 75%; }
.flex-80 { width: 80%; }


.site-footer {
  background: linear-gradient(160deg, #0a0a0a, #1daa61);
  color: #fff;
  padding: 40px 30px 20px;
}

.footer-disclaimer {
  padding: 20px;
  font-size: 12px;
  color: #e0e0e0;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.promo-left, .promo-right {
  flex: 1 1 45%;
  min-width: 280px;
}

.footer-promo h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-left: 4px solid #fff;
  padding-left: 10px;
  font-weight: 600;
  color: #fff;
}

.footer-promo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-promo li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.promo-right p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 15px;
}

.promo-btn {
  background: #fff;
  color: #1FAB89;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background: #1FAB89;
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 20px;
  gap: 30px;
}

.footer-left span {
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 20px;
  display: block;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 24px;
}

.social-icons a {
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1FAB89;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}

.footer-links a {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1FAB89;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 15px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .header-nav .header-container {
      width: 100%;
      padding: 10px;
      margin: 0 auto;
    }
    .header-nav .header-container .logo {
      justify-content: start;
      margin: 0;
      padding: 0;
    }
    .header-right {
    gap: 1rem;
    }
    .header-right button {
      font-size: 16px;
      padding: 5px;
    }

    .page-wrapper-flex,
    .page-wrapper-block {
        width: 100%;
        padding: 0 10px;
        gap: 10px;  
        flex-direction: column;
        margin: 5px 0;
    }
    
    .flex-15,
    .flex-20,
    .flex-30,
    .flex-35,
    .flex-40,
    .flex-50,
    .flex-60,
    .flex-70,
    .flex-75,
    .flex-80 {
      width: 100%;
    }
    
    .section-flex-full {
      flex-direction: column;
      gap: 10px;
      padding: 0 10px;
    }
    
    .wrapper-box {
      padding: 10px;
    }
    
    .site-footer {
      padding: 10px;
    }
    
    .footer-middle {
    flex-direction: column;
    text-align: center;
    gap: 20px;
   }
}

.sio-report-line { 
    text-align:center; 
    margin: 10px 15px; 
    color:#fff; 
}
.sio-report-line a { 
    font-weight:500;
    color: #1FAB89;
    text-decoration:underline;
    letter-spacing: 1px;
}

.sio-modal { 
    position:fixed; 
    inset:0; 
    display:none; 
    z-index:9999; 
}
.sio-modal.active {
    display:block; 
}
.sio-modal-backdrop { 
    position:absolute; 
    inset:0; 
    background:rgba(0,0,0,.4); 
}
.sio-modal-card {
  position:relative;
  max-width:520px; 
  margin:8vh auto; 
  background:#fff; 
  border-radius:16px;
  padding:20px; 
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}
.sio-close { 
    position:absolute; 
    top:8px; 
    right:12px; 
    border:0; 
    background:transparent; 
    font-size:28px; 
    cursor:pointer; 
}
.sio-label { 
    font-size:14px; 
    margin:10px 0 6px; 
    display:block; 
    color:#1a1d23; 
}
.sio-input, .sio-input:focus, .sio-input:active {
  width:100%; 
  padding:10px 12px; 
  border:1px solid #d6d6d6; 
  border-radius:10px; 
  outline:none; 
  height: 50px;
}
.sio-input:focus { 
    border-color:#083c71; 
    box-shadow:0 0 0 3px rgba(8,60,113,.12); 
}

.sio-btn {
  margin-top:12px; 
  width:100%; 
  padding:12px; 
  border:0; 
  border-radius:12px; 
  cursor:pointer;
  background:#083c71; 
  color:#fff; 
  font-weight:600;
}
.sio-btn:hover { filter:brightness(1.05); }
.sio-msg { margin-top:10px; font-size:14px; }
.sio-msg.ok { color:#1f7a1f; }
.sio-msg.err { color:#b00020; }

