
body {
    /* Gunakan min-height agar konten bisa lebih panjang dari layar */
    min-height: 100vh; 
    position: relative;
    /* Berikan ruang di bawah agar tombol TIDAK tertutup footer */
    padding-bottom: 1px; 
    margin: 0;
}


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

.textjalan{
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    background-color: #fff;
    font-weight: bold;
}

.textjalan svg{
    color: #004480;
}

.coverform{
    width: 90%;
    height: auto;
    padding: 0px;
    background-color: #fff;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

.form h5{
    border-bottom: 1px solid #FF8601;
    color: #FF8601;
}

label[for="kupon"] {
  font-weight: bold;
  font-size: 0.9rem;
  color: #333;
  display: block;
  margin-bottom: 8px;
  font-family: 'Segoe UI', sans-serif;
}

select#kupon {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #FF8601;
  border-radius: 5px;
  background-color: #ffff;
  box-shadow: 0 3px 13px rgba(0,0,0,0.1);
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23007BFF' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px top 50%;
  background-size: 12px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

select#kupon:hover,
select#kupon:focus {
  border-color: #FF8601;
  box-shadow: 0 0 0 2px rgba(0, 123, 222, 0.22);
  outline: none;
}

select#kupon option[disabled] {
  color: #aaa;
}
.inp{
    margin-bottom: 10px;
}

.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);
}

input:focus{
    border: 1px solid red;
}

button{
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #21a4a7;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 13px rgba(0,0,0,0.4);
    border: 1px solid #fff;
    margin-top: 18px;
}

.footer-fixed {
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* Menghilangkan sela kosong di bawah gambar */
    line-height:; 
}

.footer-fixed img {
    width: 100%;
    /* BATASI tinggi maksimalnya di sini, misal 80px atau 100px */
    max-height: 250px; 
    /* object-fit: cover agar gambar tetap memenuhi lebar tanpa gepeng */
    object-fit: cover; 
    display: block;
}

