
    :root{
      --bg:#f5f7fb;
      --card:#ffffff;
      --accent:#0b5cff; /* change to match original */
      --muted:#6b7280;
      --radius:12px;
      --shadow: 0 6px 20px rgba(12,20,40,0.08);
      --glass: rgba(255,255,255,0.6);
      --maxw:980px;
      font-family:Verdana, Geneva, Tahoma, sans-serif;
    }
    #password[type="password"],
    #password[type="text"] {
    /* Your styles here */
    padding: 12px;
    font-size: 15px;
    border-radius: 8px;
    border:1px solid #e6e9ef;
    width: 100%;
    box-sizing: border-box;
    background: white;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      background: linear-gradient(180deg,var(--bg), #fbf4ee 60%);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;      
    }

    /* page container */
    .wrap{
      width:100%;
      max-width:100%;
      display:flex;
      flex-direction: column;
      grid-template-columns: 1fr 420px;
      margin-top: 50px;
      align-items:center;
      justify-content: center;
    }

    /* left hero */
    .hero{
      padding: 40px 20px;
      border-radius:var(--radius);
      background: linear-gradient(180deg, rgba(255, 100, 11, 0.06), rgba(255, 141, 11, 0.02));
      min-height:360px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:18px;
    }
    .hero h1{
      margin:0;
      font-size:28px;
      color:#071024;
    }
    .hero p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.6;
      max-width:56ch;
    }
    .hero .highlight{
      display:inline-block;
      margin-top:12px;
      padding:10px 14px;
      background:var(--card);
      border-radius:10px;
      box-shadow: var(--shadow);
      font-size:14px;
      color:#0b5cff;
      width:max-content;
    }

    /* right card */
    .card{
      background:var(--card);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:28px;
      width:50%;
      margin-top: 45px;      
    }

    .logo-wrap{
      display:flex;
      justify-content:center;
      margin-bottom:10px;
    }
    .logo{
      height:34px;
      width:auto;
      display:block;
    }

    .card h2{
      margin:6px 0 18px 0;
      font-size:20px;
      color:#3b5868;
      font-weight:lighter;
      text-align: center;      
    }

    .form-row{display:flex;flex-direction:column;gap:12px}
    label{font-size:13px;color:var(--muted)}
    input[type="email"],
    input[type="number"],
    input[type="text"],
    input[type="password"]{
      width:100%;
      padding:12px 14px;
      border-radius:10px;
      border:1px solid #e6e9ef;
      font-size:15px;
      outline:none;
      transition:box-shadow .15s, border-color .15s;
    }
    input:focus{ box-shadow:0 4px 12px rgba(11,92,255,0.08); border-color: rgba(11,92,255,0.28) }

    .form-actions{
      margin-top:8px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:10px 14px;
      border-radius:10px;
      border:0;
      cursor:pointer;
      font-weight:600;
    }
    .btn.primary{
      background:#f7c908;
      color:#1b3967;
      font-weight: bold;
    }
    .btn.primary:hover{
      background:#f7c908;
      color:#1b3967;
      font-weight: bold;
      box-shadow: 0 6px 18px rgba(239, 86, 72,0.3);

    }
    .btn.ghost{
      background:transparent;
      color:var(--muted);
      border:1px solid #eef2ff;
      font-weight:600;
    }

    /* Make header transparent */
    .main-header {
    position: fixed;        /* stays on top */
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    }

    /* Logo */
    .header-logo img {
    height: 28px;
    width: auto;
    display: block;
    }

    /* Language Button */
    .lang-btn {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 14px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: 0.2s;
    width: max-content;
    }
    /* Responsive */
    @media (max-width: 480px) {
      .main-header {
          padding: 10px 16px;
      }
      .header-logo img {
          height: 28px;
      }
      .card{
        margin-top: 30px;
      }
    }

    .small{
      font-size:13px;color:var(--muted)
    }

    .divider{
      display:flex;align-items:center;gap:12px;margin:18px 0;
    }
    .divider::before, .divider::after{
      content:"";height:1px;background:#e6e9ef;flex:1;border-radius:2px;
    }
    .socials{display:flex;gap:10px}

    .footer-links{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}
    .footer-links a{color:var(--muted);font-size:13px;text-decoration:none}

    /* mobile */
    @media (max-width:920px){
      .wrap{ grid-template-columns: 1fr; padding:0; gap:16px }
      .logo-wrap{ justify-content:flex-start }
    }
    .lang-menu {
    position: absolute;
    right: 24px;
    top: 40px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-radius: 8px;
    list-style: none;
    padding: 8px 0;
    display: none;
    }

    .lang-menu li {
    padding: 8px 16px;
    cursor: pointer;
    }

    .lang-menu li:hover {
    background: #f5f5f5;
    }
