/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } */

  body {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding: 20px; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
  }

  .form-container {
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp 0.5s ease-out;
    padding: 0 0 50px;
    margin: 70px auto;
  }

  .form-container h2{
    font-size: 24px;
    line-height: 40px;
    padding: 0 0 30px;
  }
.form-container .nice-select{
      padding: 0 15px;
    float: none;
    height: 50px;
    line-height: 45px;
       border: 2px solid #e2e8f0;
       border-radius: 8px;
}
.form-container .nice-select:after{
  right: 12px;
}
.nice-select span.current{
    font-weight: 400;
    color: #2d3748;
}
  .form-container .list{
    margin: 0;
  }
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .form-header {
    background: #B4975A;
    color: white;
    padding: 30px;
    text-align: center;
  }

  .form-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
  }

  .form-header p {
    opacity: 0.9;
    font-size: 14px;
    margin: 0 0 20px 0;
    color: #fff;
  }

  .progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: white;
    width: 50%;
    transition: width 0.3s ease;
  }

  .step-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 30px;
    background: #f8f9fa;
  }

  .step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    transition: all 0.3s ease;
  }

  .step-dot.active {
    background: #B4975A;
    transform: scale(1.2);
  }

  .form-content {
    padding: 30px 40px;
  }

  .intro-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0 60px !important;
  }

  .intro-section h3 {
    color: #2d3748;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .intro-section p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
  }

  .form-step {
    display: none;
    animation: fadeIn 0.4s ease-in;
  }

  .form-step.active {
    display: block;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateX(10px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .form-group {
    margin-bottom: 24px;
  }

  label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .required {
    color: #e53e3e;
  }

  input[type="text"],
  input[type="email"],
  select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    color: #2d3748;
  }

  input[type="text"]:focus,
  input[type="email"]:focus,
  select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }

  input[type="text"]:hover,
  input[type="email"]:hover,
  select:hover {
    border-color: #cbd5e0;
  }

  .form-container .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 20px; */
  }

  .request-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 12px;
  }

  .request-tile {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
  }

  .request-tile:hover {
    border-color: #B4975A;
    /* background: #f7fafc;
    transform: translateY(-2px); */
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
  }

  .request-tile input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #B4975A;
    outline: none;
  border: none;
  }

  .request-tile input[type="radio"]:checked + span,
  .request-tile:has(input[type="radio"]:checked) {
    border-color: #B4975A;
    /* background: #edf2f7; */
    font-weight: 600;
  }

  .request-tile span {
    flex: 1;
    font-size: 14px;
    color: #2d3748;
  }

  .btn-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-end;
    max-width: 200px;
    float: right;
  }

  .btn {
    font-size: 23px;
    line-height: 35px;
    font-weight: 400;
    color: #131313;
    border: 1px solid #061038;
    background: transparent;
    border-radius: 6px !important;
    min-width: 220px;
    /* padding: 8px 16px 12px 16px; */
    /* text-transform: capitalize; */
}
/* .nice-select{
  padding: 0;
} */

.btn:focus {
    background: #b4975a !important;
    color: #fff !important;
    border-color: #b4975a !important;
}

.btn:hover {
    background: #b4975a;
    color: #fff;
    border-color: #b4975a;
}

  .btn-primary:active {
    transform: translateY(0);
  }

  /* .btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
  } */

  /* .btn-secondary:hover {
    background: #cbd5e0;
  } */

  .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
  }

  .error-message {
    color: #e53e3e;
    font-size: 13px;
    display: none;
  }

  .error-message.show {
    display: block;
  }

  .loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
  }

  .success-message.show {
    display: block;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
  }

  .success-message h2 {
    color: #2d3748;
    margin-bottom: 12px;
    font-size: 24px;
  }

  .success-message p {
    color: #718096;
    font-size: 16px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    body {
      padding: 10px;
    }

    .form-header {
      padding: 24px 20px;
    }

    .form-header h1 {
      font-size: 24px;
    }

    .form-content {
      padding: 30px 20px;
    }

    .intro-section {
      margin-bottom: 24px;
      padding-bottom: 20px;
    }

    .intro-section h3 {
      font-size: 18px;
    }

    .intro-section p {
      font-size: 14px;
    }

    .row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .request-grid {
      grid-template-columns: 1fr;
    }

    /* .btn-group {
      flex-direction: column-reverse;
    } */

    .btn {
      width: 100%;
      justify-content: center;
    }

    .step-indicator {
      padding: 15px 20px;
    }

    .btn{
        min-width: inherit;
        padding: 8px 30px 12px 30px;
        white-space: nowrap;
            min-width: 220px;
    }
    .btn-group{
        max-width: inherit;
    }
    
  }

  @media (max-width: 480px) {
    .form-header h1 {
      font-size: 20px;
    }

    .form-content {
      padding: 24px 16px;
    }

    .request-tile {
      padding: 14px;
    }

    .request-tile span {
      font-size: 13px;
    }
    .btn-group{
        flex-direction: column;
        float: none;
        max-width: inherit;
    }
    .btn{
        font-size: 20px;
    }
    .form-container h2{
        line-height: 30px;
    }
  }

  /* Select dropdown styling */
  .form-container select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }

  /* Country input with datalist */
  .country-input-wrapper {
    position: relative;
  }


/* Hide default radio style */
.request-tile input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #B4975A;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

/* Checked state */
.request-tile input[type="radio"]:checked {
  background-color: #B4975A;
  box-shadow: inset 0 0 0 4px #fff;
}

/* Highlight the tile on checked */
.request-tile:has(input[type="radio"]:checked) {
  border-color: #B4975A;
  /* background: #edf2f7; */
  font-weight: 600;
}







.form-container .fa-circle-info{
    margin-left: 3px;
}


.form-container .fa-circle-info p{
    color: #fff !important;
    font-size: 16px;
    padding: 0 0 10px;
}
.terms-wrap {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    cursor: pointer;
}

/* hide default checkbox */
.terms-wrap input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* custom box */
.terms-wrap .check {
    width: 18px;
    height: 18px;
    border: 1px solid #B4975A;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    background: #fff;
    transition: 0.2s ease;
}

/* checkmark */
.terms-wrap input[type="checkbox"]:checked + .check {
    background: #B4975A;
    border-color: #B4975A;
}

.terms-wrap input[type="checkbox"]:checked + .check::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 7px;
    height: 11px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

/* text */
.text-wrap strong {
    font-size: 16px;
    font-weight: 600;
    color: #24323a;
}

.text-wrap p {
    margin-top: 8px;
    font-size: 13px;
    color: #6b7a83;
    line-height: 1.45;
}

.req {
    color: #c94a3f;
}

/* error message */
.error {
    margin-top: 10px;
    color: #c94a3f;
    font-size: 13px;
    display: none;
}

.error.visible {
    display: block;
}



