/* Username area */
    .label-inline{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:8px;
    }
    .label-inline .label{
      color:var(--muted);
      font-size:14px;
      font-weight:600;
    }

    .qr img {
        width: 28px;
        height: auto;
    }

    /* Username input with QR icon on right */
    .user-input{
      position:relative;
      border:2px solid var(--line);
      border-radius:12px;
      padding:12px 46px 12px 14px;
      display:flex;
      align-items:center;
      background:white;
    }
    .user-input input{
      border:0;
      outline:0;
      font-size:15px;
      font-weight:600;
      color:#333;
      width:100%;
    }
    .user-input .qr{
      position:absolute;
      right:10px;
      top:50%;
      transform:translateY(-50%);
      width:36px;
      height:36px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
      color:var(--teal);
      border-radius:8px;
    }

    /* Amount box: light background, left Rp big, right input */
    .amount-wrap{
      background:var(--light-gray);
      border-radius:10px;
      padding:16px;
      margin:18px 0;
      border:1px solid rgba(0,0,0,0.03);
    }

    .amount-top{
      color:var(--muted);
      font-weight:600;
      margin-bottom:10px;
      font-size:15px;
    }

    .amount-row{
      display:flex;
      align-items:center;
      gap:12px;
      justify-content:flex-start;
    }

    /* LARGE Rp text */
    .amount-rp{
      font-size:56px; /* besar seperti screenshot, disesuaikan */
      font-weight:700;
      color:#6b6b6b;
      line-height:1;
      min-width:92px;
      display:flex;
      align-items:center;
      justify-content:flex-start;
      padding-left:2px;
    }

    /* amount input area to the right — match size of Rp */
    .amount-input-wrapper{
      flex:1;
      display:flex;
      align-items:center;
    }

    .amount-input-inner{
      border-radius:10px;
      padding:0;
      width:100%;
      background: transparent;
      display:flex;
      align-items:center;
      height:20px;
    }

    .amount-input-inner input{
      border:2px solid rgba(0,0,0,0.06);
      border-radius:10px;
      padding:8px 14px;
      font-weiht:600;
      width:100%;
      height:100%;
      font-size:40px;
      color:#333;
      background: transparent;
      box-sizing:border-box;
      -moz-appearance:textfield;
      -webkit-appearance:none;
      text-align:left;
    }

    /* remove number input arrows on some browsers */
    input[type=number]::-webkit-outer-spin-button,
    input[type=number]::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    /* Catatan */
    .note-label{
      color:var(--muted);
      font-weight:600;
      margin-bottom:8px;
      font-size:14px;
    }
    /* reduced left padding so there's no big gap */
    .note{
      border:2px solid var(--line);
      border-radius:10px;
      padding:10px 14px; /* changed from 10px 62px to 10px 14px */
      min-height:46px;
      resize:vertical;
      background:white;
      font-size:15px;
      color:#333;
      width: 300px
    }

    /* Button */
    .btn-send{
      width:100%;
      border-radius:14px;
      padding:12px 16px;
      background: linear-gradient(180deg,var(--teal) 0%, var(--teal-dark) 100%);
      border:0;
      color:#fff;
      font-weight:700;
      letter-spacing:3px;
      margin-top:14px;
      box-shadow: 0 6px 18px rgba(16,120,116,0.12);
    }
    .btn-send[disabled]{
      opacity:0.55;
      cursor:not-allowed;
      box-shadow:none;
    }

    /* Modal custom */
    .modal-confirm .modal-content{
      border-radius:14px;
      padding:18px;
      box-shadow: 0 18px 40px rgba(10,10,10,0.08);
      transition: transform .28s cubic-bezier(.2,.9,.3,1), opacity .22s;
    }
    .modal-confirm .modal-header{
      border-bottom:0;
      padding-bottom:0;
    }
    .modal-confirm .modal-body{
      padding-top:6px;
      padding-bottom:0;
    }
    .modal-confirm .summary{
      background: #f8f9fa;
      border-radius:10px;
      padding:12px;
      margin-top:8px;
      font-size:14px;
      color:#333;
    }
    .modal-confirm .btn-confirm{
      background: linear-gradient(180deg,var(--teal) 0%, var(--teal-dark) 100%);
      color:white;
      border-radius:10px;
      padding:10px 14px;
      border:0;
      font-weight:700;
    }

    /* small screen adjustments */
    @media (max-width:420px){
      .amount-rp{ font-size:48px; min-width:76px; }
      .amount-input-inner input{ font-size:48px; height:56px; }
      .amount-input-inner{ height:56px; }
    }

    /* success alert insertion */
    .transfer-alert{
      border-radius:10px;
      padding:10px 14px;
      margin-bottom:12px;
    }

    input:-webkit-autofill {
      -webkit-box-shadow: 0 0 0px 1000px white inset !important;
      box-shadow: 0 0 0px 1000px white inset !important;
      -webkit-text-fill-color: #000 !important;
    }

    input {
      outline: none;
    }

    input:focus {
      border-color: none;
      box-shadow: none;
    }
