/* ===================================================
   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 {
  position: relative;
  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);
  overflow: hidden;
}

.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;
}

.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 {
  background: #188d8b;
  transform: translateY(-2px);
}

/* === TOAST LOADING === */
.toast-overlay {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  z-index: 50;
  padding: 24px 20px;
  background: #d3ebe8;
  color: #147574;
  transition: opacity 0.3s ease;
}

.toast-overlay.show {
  display: flex;
}

.toast-message {
  margin-bottom: 14px;
  line-height: 1.5;
  font-size: 0.95rem;
  font-weight: 500;
}

/* === PROGRESS BAR === */
.progress-bar {
  width: 80%;
  max-width: 300px;
  height: 8px;
  background: rgba(20, 117, 116, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 14px;
}

.progress {
  width: 0;
  height: 100%;
  background: #147574;
  transition: width 0.03s linear;
}

#tasheel-reminder-aktif p {
  margin-bottom: 6px;
}

#tasheel-reminder-aktif span {
  font-size: 1.1rem;
  font-weight: 700;
  background-color: #fff;
  color: #147574;
  padding: 4px 16px;
  border-radius: 6px;
  margin: 4px 0 20px 0;
  display: inline-block;
}

#tombolDaftarLagi {
  display: inline;
  margin: -0.5rem 0 1rem 0;
  padding: 0;
  background: none;
  color: #fff; /* warna link (opsional, bisa biru default) */
  font-weight: normal;
  border-radius: 0;
  text-decoration: underline;
  transition: none;
  box-shadow: none;
  cursor: pointer;
}

#tombolDaftarLagi:hover {
  background: rgba(255, 255, 255, 0.35);
  padding: 0.2rem 0.4rem;
}
