/*
 * =============================================
 * CSS KHUSUS HALAMAN CARA MENDAFTAR
 * =============================================
 */

/* Memberi jarak atas pada section pertama agar tidak tertutup navbar */

/* Section Styling Umum */
.registration-steps-section {
  background-color: var(--background-light);
  margin-top: 4.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.registration-form-section {
  background-color: var(--background-soft);
}

.section-title {
  font-family: var(--font-heading);
  color: var(--primary-text);
  font-weight: 700;
}

.section-subtitle {
  color: var(--secondary-text);
}

/* Kartu Langkah Pendaftaran */
.step-card {
  background-color: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border-top: 4px solid var(--tk-blue);
  box-shadow: 0 0.5rem 1.5rem var(--black-08-opacity);
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--accent-orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -3.75rem auto 1.5rem auto;
  box-shadow: 0 4px 10px var(--black-15-opacity);
}

.step-title {
  color: var(--primary-text);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text {
  color: var(--secondary-text);
  font-size: 0.95rem;
  flex-grow: 1; /* Memastikan teks mengisi ruang agar kartu sama tinggi */
}

/* Tombol Submit */
.btn-primary-custom {
  font-weight: 700;
  transition: all 0.3s ease;
  background: var(--tk-orange);
  color: var(--white);
  border: none;
}
.btn-primary-custom:hover {
  background: #e66a00; /* Warna oranye sedikit lebih gelap saat hover */
  transform: translateY(-2px);
}
