/* PAGE CONTAINER */
.registration-container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

/* TITLE */
.page-title {
  text-align: center;
  color: #5b1b52;
  font-size: 36px;
  margin-bottom: 30px;
}
/* STEP FLOW */
.step-flow {
  display: flex;
  background: #f3e6ef;
  border-radius: 40px;
  padding: 10px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  color: #7a1f63;
  font-weight: bold;
}

.step .circle {
  background: #c47bb4;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step.active {
  background: #8a1d6e;
  color: white;
}

.step.active .circle {
  background: white;
  color: #8a1d6e;
}

/* CARD */
.form-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* STEP TITLE */
.step-title {
  text-align: center;
  color: #666;
  margin-bottom: 5px;
}

.section-title {
  text-align: center;
  color: #8a1d6e;
  font-size: 28px;
  margin-bottom: 30px;
}

/* FORM GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.href {
  font-weight: bold;
  margin-bottom: 6px;
}

label span {
  color: red;
}

input,
select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

input:focus,
select:focus {
  outline: none;
  border-color: #8a1d6e;
}

/* BUTTON */
.form-actions {
  text-align: center;
  margin-top: 40px;
}
.form-section {
  text-align: left;
  margin-top: 20px;
}

.next-btn {
  display: inline-block;
  background-color: #6a0f4c;
  color: white;
  padding: 16px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px; /* Pill shape */
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(106, 15, 76, 0.3);
}

.next-btn:hover {
  background-color: #8c246b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 15, 76, 0.4);
}
.step-link {
  text-decoration: none;
  color: inherit;
}

.step-link:hover {
  color: inherit;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .step-flow {
    flex-direction: column;
    gap: 10px;
  }
}
.section-divider {
  display: flex;
  align-items: center;
  margin: 30px 0;
  color: #6a0f4c;
  font-weight: 600;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #caa3bb;
}

.section-divider span {
  padding: 0 15px;
  white-space: nowrap;
}
/* FEE BOX */
.fee-box {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  background: #faf7f9;
}

.fee-box h3 {
  margin-bottom: 20px;
  color: #6a0f4c;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.fee-row.total {
  font-weight: bold;
  border-top: 1px solid #ccc;
  padding-top: 12px;
  margin-top: 15px;
}

/* PAYMENT INFO */
/* CENTER WRAPPER */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

/* CARD */
.box-card {
  background: #f9eef4;
  border-left: 6px solid #6a0f4c;
  padding: 25px 30px;
  border-radius: 14px;
  width: 100%;
  max-width: 600px; /* 👈 NOT FULL WIDTH */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.payment-title {
  color: #6a0f4c;
  margin-bottom: 15px;
}

/* TEXT */
.payment-card p {
  margin: 6px 0;
  font-size: 15px;
}

/* UPLOAD SECTION */
.upload-section {
  margin-top: 30px;
}

.upload-title {
  color: #6a0f4c;
  margin-bottom: 15px;
}

.upload-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.upload-hint {
  display: block;
  font-weight: normal;
  font-size: 14px;
  color: #777;
}

/* UPLOAD BOX */
.upload-box {
  border: 2px dashed #6a0f4c;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  background: #faf7f9;
  transition: all 0.3s ease;
}

.upload-box:hover {
  background: #f1e1ea;
}

/* ICON */
.upload-icon {
  width: 50px;
  margin-bottom: 15px;
}

/* TEXT */
.upload-text {
  color: #444;
}

.upload-text strong {
  color: #6a0f4c;
}

/* FILE NAME */
.file-name {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}
.p {
  align-items: center;
}
input[type="date"] {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  width: 100%;
}
.time-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-row input[type="time"] {
  flex: 1;
}

.separator {
  font-weight: 500;
  color: #555;
}
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  cursor: pointer;
}
