
/* Partner Registration */

.Partner-registration .page-title {
    font-size: 2.2rem;
    font-weight: 700;
}
.Partner-registration .subtitle {
    color: #595959;
    font-size: 1rem;
}
.Partner-registration .stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem auto 2rem;
    max-width: 1100px;
    padding: 0 1.5rem;
}
.Partner-registration .step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 150px;
}
.Partner-registration .step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    background: #fff;
    flex: 0 0 auto;
}
.Partner-registration .step-item.active .step-circle {
    border-color: #071126;
    background: #eef3fb;
}
.Partner-registration .step-item.completed .step-circle {
    background: #071126;
    border-color: #071126;
    color: #fff;
}
.Partner-registration .step-text strong {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
}
.Partner-registration .step-text span {
    color: #595959;
    font-size: 0.875rem;
}
.Partner-registration .step-line {
    height: 1.5px;
    background: #ccc;
    flex: 1;
    max-width: 150px;
}
.Partner-registration .step-line.completed {
    background: #071126;
}
.Partner-registration .form-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(7, 17, 38, 0.08);
    padding: clamp(1.5rem, 2vw, 2.5rem);
    max-width: 1120px;
    margin: 0 auto 4rem;
}
.Partner-registration .form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
}
.Partner-registration .section-help {
    color: #595959;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.Partner-registration label {
    font-weight: 500;
    font-size: .875rem;
}
.Partner-registration .required {
    color: #e3342f;
}
.Partner-registration .form-control, .Partner-registration .form-select {
    min-height: 40px;
    border-radius: 4px;
    font-size: 1rem;
    padding: .25rem .75rem .25rem 1rem !important;
}

.Partner-registration textarea.form-control {
    min-height: 150px;
}

.Partner-registration .consent-box, .Partner-registration .opportunity-box {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 1rem;
}
.Partner-registration .opportunity-box {
    background: #f8fafd;
}

.Partner-registration .form-step {
    display: none;
}
.Partner-registration .form-step.active {
    display: block;
}
.Partner-registration .invalid-feedback {
    font-weight: 600;
}
.Partner-registration .summary-box {
    display: none;
    border-radius: 16px;
    background: #ecfdf3;
    color: #05603a;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.Partner-registration .conditional-field {
    display: none;
}
.Partner-registration .thank-you-card {
    display: none;
    max-width: 1120px;
    margin: 4rem auto;
    padding: clamp(3rem, 7vw, 2.75rem);
    border: 1px solid #ccc;
    border-radius: 28px;
    box-shadow: 0 6px 16px rgba(7, 17, 38, 0.08);
    text-align: center;
}

.Partner-registration .thank-you-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}
.Partner-registration .thank-you-card p {
    max-width: 760px;
    margin: 0 auto 3rem;
    color: #5d6f8f;
    font-size: 1.35rem;
    line-height: 1.6;
}
.Partner-registration .submit-another-btn {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    font-weight: 700;
    font-size: 1.05rem;
    background: #fff;
    box-shadow: 0 4px 10px rgba(7, 17, 38, 0.08);
}
.Partner-registration .submit-another-btn:hover {
    border-color: #071126;
}
.Partner-registration .radio-error {
    display: none;
}
.Partner-registration .step-text strong, .Partner-registration .step-text span {
    color: #808080;
}
.Partner-registration .step-circle {
    border-color: #ccc;
    color: #5d6f8f;
    background: #fff;
}
.Partner-registration .step-item.active .step-circle {
    border-color: #071126;
    color: #071126;
    background: #eef3fb;
}
.Partner-registration .step-item.active .step-text strong {
    color: #071126;
}
.Partner-registration .step-item.active .step-text span {
    color: #5d6f8f;
}
.Partner-registration .step-item.completed .step-circle {
    background: #071126;
    border-color: #071126;
    color: #fff;
}
.Partner-registration .step-item.completed .step-text strong {
    color: #071126;
}
.Partner-registration .step-item.completed .step-text span {
    color: #5d6f8f;
}

@media (max-width: 768px) {
.Partner-registration .stepper {
    align-items: flex-start;
    gap: 0;
}
.Partner-registration .step-item {
    min-width: auto;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
}
.Partner-registration .step-text strong {
    font-size: 0.9rem;
}
.Partner-registration .step-text span {
    display: none;
}
.Partner-registration .step-line {
    margin-top: 18px;
    max-width: 30px;
}
.Partner-registration .thank-you-card {
    max-width: unset;
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
}
.Partner-registration .form-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(7, 17, 38, 0.08);
    padding: clamp(1rem, 2vw, 2.5rem);
    max-width: unset;
    width: 90%;
    margin: 0 auto 2rem;
    padding-bottom: 2.5rem;
}
}
@media (max-width: 575.98px) {
    .form-card .d-flex.justify-content-between.align-items-center {
      flex-direction: column;
      align-items: stretch !important;
      gap: 1rem;
    }
  
    .form-card .g-recaptcha {
      order: 1;
      transform: scale(0.86);
      transform-origin: left top;
      margin-bottom: 0 !important;
    }
  
    .form-card .next-btn,
    .form-card button[type="submit"] {
      order: 2;
      justify-content: center;
    }
  
    .form-card .mb-0 {
      width: 100%;
    }
  }