body {
    min-height: 100vh;  /* ✅ BENAR */
    font-family: Arial, Helvetica, sans-serif;
}

.navnon {
    position: fixed;
    top: 0;
    left: 0;
}

.textjalan {
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    background-color: #fff;
    font-weight: bold;
font-size:12px;
     margin-bottom:4px;
  padding:6px 0;
}

.textjalan svg {
    color: #004480;

    
}

.coverform {
    width: 90%;
    max-width: 420px;
    padding: 20px;   /* ✅ HARUS ADA NILAI */
    background-color: #fff;
    display: block;
    margin: 25px auto;
}
.coverform + p{
  font-size:12px;
  color:#333;
  font-weight:600;
}

.form h5{
  margin-top: -45px;        /* ⬅️ NAIKKAN GARIS */
  margin-bottom: 8px;  /* ⬅️ BIARKAN (JARAK KE GAMBAR TETAP) */
  border-bottom: 1px solid #FF8601;
}

.inp {
    margin-bottom: 10px;
}

.inp label{
  font-family: Arial, Helvetica, sans-serif;
  font-size:13px;
  font-weight:600;   /* SEMUA jadi sama */
  color:#222;
  display:block;
  margin-bottom:6px;
}

.inp input {
    width: 100%;
    padding: 9px;
    border: none;
    border: 1px solid #FF8601;
    outline: none;
    border-radius: 5px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.1);
      font-size:14px;
  color:#111;
}

input:focus {
    border-color: #fb8c00; /* ✅ SAMA DENGAN TEMA */
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #FF8601;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.4);
    border: 1px solid #fff;
    margin-top: 18px;
      font-size:15px;
  font-weight:700;
  letter-spacing:.3px;
}

.site-footer{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.site-footer img{
  width: 100%;
  height: auto;
  display: block;
}

.inp select{
  width:100%;
  padding:12px;
  font-size:14px;
  border:2px solid #FF8601;
  border-radius:6px;
  outline:none;
  background:#fff;
}

.inp select:focus{
  border-color:#fb8c00;
}

.bank-footer{
  text-align:center;
  margin-top:14px;
}

.bank-name{
  font-size:12px;
  font-weight:600;
  color:#333;
  margin-bottom:4px;
}

.bank-tagline{
  font-size:13px;
  font-weight:800;          /* BOLD */
  text-align:center;
  margin-top:30px;          /* JARAK DARI TEKS ATAS */
  line-height:1.4;
}

.bank-tagline .orange{
  color:#ff9800;
}

.bank-tagline .blue{
  color:#1e88e5;
}

.promo-banner{
  display:block;
  width:100%;
  max-width:360px;    /* ukuran sedang */
  height:auto;
  margin:0 auto 18px; /* center + jarak bawah */
  border-radius:10px; /* opsional */
}

.banner-wrap{
  padding-top: 15px;
}

.inp input,
.inp select{
  box-sizing: border-box;
}