* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  color: #333;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.product-image {
  width: 100%;
  max-width: 400px;
}

.title {
  color: #0070c0;
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
}

.subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 10px;
}

.density-box {
  font-size: 16px;
  color: #555;
  margin-bottom: 5px;
}

.density-label {
  background: linear-gradient(90deg, #0070c0, #00a2ff);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: bold;
}

.distributor {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

.garansi-section {
  text-align: center;
  background: linear-gradient(90deg, #0070c0, #00a2ff);
  border-radius: 12px;
  padding: 15px 10px;
  color: white;
  margin-bottom: 20px;
}

.garansi-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.garansi-item {
  background-color: #fff;
  color: #0070c0;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 18px;
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-size: 14px;
  color: #555;
}

label span {
  color: red;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

textarea {
  resize: none;
  height: 60px;
}

input[readonly] {
  background-color: #f5f5f5;
  color: #333;
}

.submit-btn {
  margin-top: 20px;
  background: linear-gradient(90deg, #0070c0, #00a2ff);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* === TAMBAHAN CSS UNTUK HALAMAN SUKSES === */

/* Mengatur tata letak utama kartu sukses */
.success-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Memberi sedikit bayangan */
}

/* Mengatur ikon ceklis */


/* Judul "SELAMAT" */
.success-title {
    font-size: 24px;
    font-weight: 900; /* Dibuat lebih tebal */
    color: #000;
    margin: 0;
}

/* Sub-judul "Anda Berhasil Registrasi" */
.success-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-top: 4px;
    margin-bottom: 25px;
}

/* Kotak biru untuk info garansi */
.success-garansi-section {
    background-color: #007bff; /* Warna biru solid seperti di gambar */
    border-radius: 8px;
    padding: 20px;
    color: white;
    margin-bottom: 25px;
}

.success-garansi-section h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 500;
}

/* Kontainer untuk kotak tanggal */
.success-garansi-box {
    display: flex;
    justify-content: center;
    gap: 15px; /* Jarak antar kotak */
}

/* Kotak tanggal individual */
.success-garansi-item {
    background-color: #fff;
    color: #333;
    font-weight: 700;
    font-size: 22px;
    padding: 8px 0;
    width: 70px; /* Lebar kotak */
    border-radius: 6px;
}

/* Menyesuaikan form di halaman sukses */
.product-form div {
    margin-bottom: 15px; /* Menambah jarak antar input field */
    text-align: left; /* Meluruskan label ke kiri */
}