/* ===================================================
   nama file: /root/public/reminder/reminder.css
====================================================== */
.tasheel-reminder {
  position: relative;
  width: 100%;
  max-width: 1500px;
  padding: 2rem 1.5rem;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  background: #147574;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tasheel-reminder h2 {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.tasheel-reminder p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.tasheel-reminder span {
  font-size: 1rem;
  font-weight: 700;
  background-color: #fff;
  color: #147574;
  padding: 4px 16px;
  border-radius: 6px;
  text-shadow: none;
  margin: 10px 0 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.tasheel-reminder img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* === FORM === */
.formulir {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 25px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.formulir label {
  display: block;
  font-weight: 700;
  margin: 10px 0 5px 0;
  color: #fff;
}
.formulir input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  color: #333;
  box-sizing: border-box;
}
.formulir input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.formulir button[type="submit"] {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #147574;
  color: #fff;
  transition: all 0.25s ease;
  font-family: inherit;
  font-size: 1rem;
}
.formulir button[type="submit"]:hover:not(:disabled) {
  background: #188d8b;
  transform: translateY(-2px);
}
.formulir button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* === DIV AKTIF === */
#tasheel-reminder-aktif p {
  margin: -0.5rem 0 0 0;
}
#tasheel-reminder-aktif span {
  font-size: 1.1rem;
  font-weight: 700;
  background-color: #fff;
  color: #147574;
  padding: 0.2rem 1rem;
  border-radius: 6px;
  margin: 0.2rem 0 0 0;
  display: inline-block;
}
#tombolDaftarLagi {
  display: inline;
  margin: 0.3rem 0 1rem 0;
  padding: 0;
  background: none;
  color: #fff;
  font-weight: normal;
  border-radius: 0;
  text-decoration: underline;
  cursor: pointer;
}
#tombolDaftarLagi:hover {
  background: rgba(255, 255, 255, 0.35);
  padding: 0 0.5rem;
}
