
:root{
    --navy:#0b2e6b;
    --navy-dark:#0a2557;
    --blue:#1450b4;
    --text-dark:#12203c;
    --text-gray:#5b6b82;
    --bg-gray:#f4f6f9;
    --white:#ffffff;
    --border:#e3e8f0;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  body{
    font-family:'Segoe UI',Arial,Helvetica,sans-serif;
    background:var(--bg-gray);
    color:var(--text-dark);
    line-height:1.4;
  }
  a{text-decoration:none;color:inherit;}

  /* ===== Top contact bar ===== */
  .topbar{
    background:#ffffff;
    padding:16px 40px;
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    border-bottom:1px solid var(--border);
  }
  .topbar-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:var(--navy);
    color:#fff;
    padding:8px 20px 8px 8px;
    border-radius:999px;
  }
  .topbar-icon{
    width:34px;height:34px;
    background:#fff;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--navy);
    flex-shrink:0;
    font-size:16px;
  }
  .topbar-text{font-size:12px;line-height:1.3;}
  .topbar-text .label{opacity:.85;font-size:11px;display:block;}
  .topbar-text .value{font-weight:700;font-size:14px;}

  /* ===== Main layout ===== */
  .page{
    max-width:1500px;
    margin:0 auto;
    padding:40px;
    display:grid;
    grid-template-columns:1.45fr 1fr;
    gap:32px;
    align-items:start;
  }
  @media(max-width:1000px){
    .page{grid-template-columns:1fr;}
  }

  /* ===== Left column ===== */
  .eyebrow{
    color:var(--blue);
    font-weight:700;
    letter-spacing:1px;
    font-size:13px;
    margin-bottom:10px;
  }
  h1.hero{
    font-size:44px;
    font-weight:800;
    color:var(--text-dark);
    line-height:1.15;
    margin-bottom:14px;
  }
  h1.hero span{color:var(--blue);}
  .rule{
    width:60px;height:4px;background:var(--blue);
    margin:18px 0;border-radius:2px;
  }
  .lead{
    max-width:420px;
    color:var(--text-gray);
    font-size:15px;
    margin-bottom:24px;
  }

  .hero-media{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:-70px;
    height:340px;
    background:linear-gradient(135deg,#dfe6ef,#c9d4e2);
  }
  .hero-media img{
    width:100%;height:100%;object-fit:cover;display:block;
  }

  .feature-strip{
    background:var(--navy);
    border-radius:16px;
    padding:70px 30px 26px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    color:#fff;
    position:relative;
    z-index:1;
  }
  @media(max-width:700px){
    .feature-strip{grid-template-columns:repeat(2,1fr);}
  }
  .feature{text-align:left;}
  .feature-icon{
    width:52px;height:52px;
    border:1.5px solid rgba(255,255,255,.5);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:14px;
    font-size:22px;
  }
  .feature h3{font-size:16px;font-weight:700;color:#ffffff;margin-bottom:8px;}
  .feature p{font-size:12.5px;color:#ffffff;line-height:1.5;}

  .notice{
    margin-top:24px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:20px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
  }
  .notice-left{display:flex;align-items:center;gap:16px;}
  .notice-icon{
    width:44px;height:44px;
    border:1.5px solid var(--blue);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--blue);font-size:20px;flex-shrink:0;
  }
  .notice h4{font-size:15px;font-weight:700;margin-bottom:4px;}
  .notice p{font-size:12.5px;color:var(--text-gray);max-width:360px;}
  .btn-outline{
    border:1.5px solid var(--blue);
    color:var(--blue);
    padding:10px 20px;
    border-radius:8px;
    font-weight:600;
    font-size:13.5px;
    white-space:nowrap;
    background:#fff;
    cursor:pointer;
  }
  .btn-outline:hover{background:#eef4ff;}

  .badges{
    display:flex;
    gap:36px;
    margin-top:26px;
    flex-wrap:wrap;
    color:var(--text-gray);
    font-size:13.5px;
  }
  .badges span{display:flex;align-items:center;gap:8px;}

  /* ===== Right column: login card ===== */
  .login-card{
    background:#fff;
    border-radius:18px;
    padding:36px 34px;
    box-shadow:0 10px 30px rgba(20,40,80,.08);
    text-align:center;
  }
  .brand{
    display:flex;align-items:center;justify-content:center;gap:10px;
    font-size:30px;font-weight:700;color:#7a6a5a;margin-bottom:18px;
  }
  .brand .swoosh{color:var(--blue);font-size:26px;}
  .login-card h2{
    color:var(--blue);
    font-size:20px;
    font-weight:700;
    margin-bottom:6px;
  }
  .login-card .sub{
    color:var(--text-gray);
    font-size:13.5px;
    margin-bottom:26px;
  }
  .field{text-align:left;margin-bottom:18px;}
  .field label{
    display:block;font-size:13px;font-weight:600;color:var(--text-dark);margin-bottom:6px;
  }
  .field-wrap{position:relative;}
  .field-wrap input{
    width:100%;
    padding:12px 40px 12px 14px;
    border:1.5px solid var(--border);
    border-radius:8px;
    font-size:14px;
    color:var(--text-dark);
    background:#fbfcfe;
  }
  .field-wrap input:focus{outline:none;border-color:var(--blue);}
  .field-icon{
    position:absolute;right:14px;top:50%;transform:translateY(-50%);
    color:#9aa5b5;font-size:15px;
  }

  .captcha{
    display:flex;align-items:center;justify-content:space-between;
    border:1.5px solid var(--border);
    border-radius:8px;
    padding:12px 14px;
    margin-bottom:22px;
    background:#fbfcfe;
  }
  .captcha-left{display:flex;align-items:center;gap:10px;font-size:13.5px;color:var(--text-dark);}
  .captcha-badge{font-size:10px;color:#9aa5b5;text-align:right;line-height:1.3;}

  .btn-login{
    width:100%;
    background:var(--navy);
    color:#fff;
    border:none;
    padding:13px;
    border-radius:8px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    margin-bottom:16px;
  }
  .btn-login:hover{background:var(--navy-dark);}
  .forgot{color:var(--blue);font-size:13.5px;font-weight:600;}

  .help-card{
    margin-top:24px;
    background:#eef1f6;
    border-radius:16px;
    padding:24px 26px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
  }
  .help-card h4{font-size:15px;font-weight:700;margin-bottom:2px;}
  .help-card p{font-size:12.5px;color:var(--text-gray);margin-bottom:12px;}
  .help-contacts a{
    display:flex;align-items:center;gap:8px;font-size:13.5px;color:var(--blue);font-weight:600;margin-bottom:6px;
  }
  .help-icon-block{
    width:80px;height:80px;border-radius:50%;
    background:linear-gradient(135deg,#1450b4,#0b2e6b);
    display:flex;align-items:center;justify-content:center;
    color:#fff;font-size:32px;flex-shrink:0;
  }

