* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Abel", sans-serif;
  background: #eef2f7;
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 15px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.card {
  text-align: left;
}

.logo {
  width: 90px;
  margin: 10px auto 15px;
  display: block;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 10px;
  font-family: "Abel";
  font-size: 16px;
}

textarea {
  min-height: 90px;
}

button {
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 10px;
  background: #2563eb;
  color: white;
  font-size: 18px;
  margin-top: 14px;
}

.pg-option {
  display: flex;
  align-items: flex-start;
  padding-left: 14px;
  gap: 10px;
  margin: 8px 0;
  cursor: pointer;
}

.pg-option input {
  display: none;
}

.pg-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #64748b;
  flex-shrink: 0;
}

.pg-text {
  line-height: 1.4;
  margin-top: 6px;
}

/* aktif */
.pg-option input:checked + .pg-circle {
  background: #15803d; /* hijau */
  border-color: #15803d;
  color: white;
}

#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  color: white;
  padding: 12px 20px;
  border-radius: 20px;
  display: none;
}

.progress {
  height: 6px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.bar {
  height: 100%;
  width: 0%;
  background: #2563eb;
}

.uraian {
  text-align: left;
  margin-top: 10px;
}

.uraian b {
  display: block;
  padding-left: 20px;
  text-indent: -20px;
  margin-bottom: 6px;
}

/* Splash */
#splash {
  position: fixed;
  inset: 0;
  background: #6a8e75;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#splash img {
  width: 120px;
  margin-bottom: 15px;
}
