    /* ---------- Reset & base ---------- */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html,body { height: 100%; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #2980b9; /* hitam background */
      display: flex;
      justify-content: center;
      align-items: flex-start;
      color: #ffffff;
    }

    /* ---------- Wrapper / layout ---------- */
    .wrapper {
      width: 100%;
      max-width: 420px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .header {
      text-align: center;
      padding: 36px 16px 12px;
    }

    .header img {
  width: 72px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
    }

    .header h1 {
  font-size: 18px;
  color: white;
  font-weight: 700;
    }

    /* ---------- Card / form (rounded on top only) ---------- */
    .form {
  background: white;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  flex: 1;
  padding: 20px;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
    }

    .title {
  text-align: center;
  margin-bottom: 6px;
  font-weight: 800;
  font-size: 20px;
  color: #2980b9;
    }
    .subtitle {
  text-align: center;
  color: #ccc;
  font-size: 13px;
  margin-bottom: 18px;
    }

    form { width: 100%; }

    /* ---------- Inputs ---------- */
    .field {
      position: relative;
      margin-bottom: 14px;
    }

    label.visually-hidden {
      position: absolute !important;
      height: 1px; width: 1px;
      overflow: hidden; clip: rect(1px,1px,1px,1px);
      white-space: nowrap; border: 0; padding: 0; margin: -1px;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"]{
      width: 100%;
      padding: 12px 14px;
      font-size: 14px;
      border-radius: 8px;
      border: 1px solid #bfbfbf;
      background: white;
      color: #2980b9;
      outline: none;
      transition: box-shadow .12s, border-color .12s;
    }

    input::placeholder { color: #bfbfbf; }
  input::placeholder { color: #ccc; }

    input:focus {
  border-color: #2980b9;
  box-shadow: 0 0 0 4px rgba(249,217,35,0.08);
    }

    /* password container to hold eye icon */
    .pw-wrap {
      position: relative;
    }

    .pw-toggle {
      position: absolute;
      right: 10px;
      top: 70%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: transparent;
      border: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 6px;
    }
    .pw-toggle:focus { outline: 2px solid rgba(0,168,120,0.18); }

    /* ---------- Submit ---------- */
    .submit {
  margin-top: 4px;
  width: 100%;
  background: #2980b9;
  color: #111;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
    }
    .submit:active { transform: translateY(1px); }

    .divider {
      text-align: center;
      margin: 18px 0 12px;
      color: #7b7b7b;
      font-size: 13px;
    }

    .socials {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
    }

    .socials button {
      flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #222;
  background: #222;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  cursor: pointer;
  color: #2980b9;
    }
    .socials img { width: 18px; height: 18px; }

  /* contact buttons (Shopee / WhatsApp) - match previous social button sizing */
  .contact-actions { display:flex; gap:12px; margin-bottom:16px; }
  .contact-actions a { flex:1; padding:10px; border-radius:8px; border:1px solid #222; background:#222; display:flex; align-items:center; justify-content:center; gap:8px; cursor:pointer; color:#2980b9; text-decoration:none; font-weight:700; }
  .contact-actions a img { width:18px; height:18px }
  .contact-actions a.shopee { background:#ff5722; color:#fff; border:0 }
  .contact-actions a.wa { background:#25D366; color:#fff; border:0 }

    .signin {
  text-align: center;
  padding: 12px 0 6px;
  font-size: 14px;
  color: #111;
    }
    .signin a { color: #00a878; text-decoration: none; font-weight: 700; }
  .signin a { color: #2980b9; text-decoration: none; font-weight: 700; }

    /* small screens tweak */
    @media (max-width:420px){
      .header { padding-top: 28px; }
      .form { padding: 18px; }
    }
