.gntc-itr-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.gntc-itr-progress {
  position: relative;
  margin: 10px 0 18px;
  height: 40px;
}

.gntc-itr-progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
}

.gntc-itr-progress__bar {
  position: absolute;
  left: 0;
  top: 20px;
  height: 4px;
  width: 0%;
  background: #2271b1;
  border-radius: 2px;
  transition: width 160ms ease-out;
}

.gntc-itr-progress__steps {
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  display: flex;
  justify-content: space-between;
}

.gntc-itr-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.08);
}

.gntc-itr-step.is-active {
  border-color: #2271b1;
  color: #0b3a66;
}

.gntc-itr-panel {
  display: none;
  padding: 18px 18px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.06);
}

.gntc-itr-panel.is-active {
  display: block;
}

.gntc-itr-panel h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.2;
  color: #111827;
}

.gntc-itr-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gntc-itr-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gntc-itr-row--2 {
  grid-template-columns: 1fr 1fr;
}

.gntc-itr-wrap label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: #111827;
  font-size: 13px;
}

.gntc-itr-wrap input,
.gntc-itr-wrap select,
.gntc-itr-wrap textarea {
  width: 100%;
  font-weight: 400;
  color: #111827;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #f9fafb;
  padding: 10px 12px;
  box-sizing: border-box;
}

.gntc-itr-wrap textarea {
  min-height: 90px;
  resize: vertical;
}

.gntc-itr-wrap input[name="pan"] {
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.gntc-itr-wrap input[name="aadhar_number"] {
  letter-spacing: 1px;
}

.gntc-itr-wrap input[type="file"] {
  padding: 9px 10px;
  background: #ffffff;
}

.gntc-itr-wrap input:focus,
.gntc-itr-wrap select:focus,
.gntc-itr-wrap textarea:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.18);
}

.gntc-itr-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.gntc-itr-autofill {
  margin-top: 12px;
}

.gntc-itr-pay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.gntc-itr-price {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  color: #111827;
  font-weight: 600;
}

.gntc-itr-amount {
  margin-left: 6px;
}

.gntc-itr-wrap .button {
  border-radius: 10px;
  padding: 9px 14px;
  font-weight: 600;
}

.gntc-itr-message {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
}

.gntc-itr-message.is-error {
  background: #fcf0f1;
  border: 1px solid #d63638;
  color: #8a1f1f;
}

.gntc-itr-message.is-success {
  background: #edfaef;
  border: 1px solid #00a32a;
  color: #0f4d1d;
}

@media (max-width: 720px) {
  .gntc-itr-row--2 {
    grid-template-columns: 1fr;
  }
}
