/* ✅ Entrepreneur Registration Scoped Styles */
.entrepreneur-registration {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 40px 0; /* same as practitioner */
}

/* 🔵 Background Circles */
.entrepreneur-registration::before,
.entrepreneur-registration::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 0, 0, 0.06);
    z-index: 0;
}
.entrepreneur-registration::before {
    width: 500px;
    height: 500px;
    left: -250px;
    top: -100px;
}
.entrepreneur-registration::after {
    width: 600px;
    height: 600px;
    right: -300px;
    bottom: -150px;
}

/* 🟤 Inner Container */
.entrepreneur-registration .container {
    position: relative;
    z-index: 1;
    max-width: 900px; /* same as practitioner */
    margin: auto;
    padding: 40px; /* same as practitioner */
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* 📝 Headers */
.entrepreneur-registration h2 {
    font-size: 22px;
    font-weight: 700;
    color: #5a2d0c;
    margin-bottom: 20px;
}
.entrepreneur-registration h5,
.entrepreneur-registration h6 {
    color: #5a2d0c;
    font-weight: 600;
    margin: 10px 0 6px;
    font-size: 14px;
}

/* 🖊️ Form Controls */
.entrepreneur-registration .form-group {
    margin-bottom: 16px; /* same spacing as practitioner */
}
.entrepreneur-registration label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}
.entrepreneur-registration .form-control {
    border: none;
    border-bottom: 2px solid #ddd; /* same as practitioner */
    border-radius: 0;
    padding: 10px 8px; /* same as practitioner */
    font-size: 14px;
    background: transparent;
    transition: border-color 0.3s ease;
}
.entrepreneur-registration .form-control:focus {
    border-color: #c50000;
    outline: none;
    box-shadow: none;
}
.entrepreneur-registration textarea.form-control {
    padding: 10px 8px;
}

/* 📂 Upload Box (like Practitioner) */
.entrepreneur-registration .upload-box {
    border: 2px dashed #ccc;
    border-radius: 10px;         /* rounded corners */
    padding: 20px;               /* bigger padding like practitioner */
    cursor: pointer;
    text-align: center;          /* center image and text */
    background: #fafafa;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;      /* stack image and text vertically */
    align-items: center;
    justify-content: center;
    gap: 10px;                   /* space between image and text */
}
.entrepreneur-registration .upload-box:hover {
    border-color: #c50000;
    background: #f9f2f2;        /* same hover background */
}
.entrepreneur-registration .upload-box img {
    max-width: 80px;             /* slightly bigger image like practitioner */
    height: auto;
}
.entrepreneur-registration .upload-box small {
    font-size: 13px;             /* same as practitioner text */
    color: #6c757d;
}

/* 💳 Membership Card (UPDATED to match Manufacturer UI) */
.entrepreneur-registration .membership-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    background: #fff8f5;
    display: flex;
    flex-direction: column;      /* ✅ Stack vertically */
    align-items: flex-start;     /* ✅ Align start like manufacturer */
    gap: 10px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 280px;           /* ✅ Match height */
}
.entrepreneur-registration .membership-card:hover,
.entrepreneur-registration .membership-card input[type="radio"]:checked + div {
    border-color: #c50000;
    background: #fff0eb;
}
.entrepreneur-registration .membership-card input[type="radio"] {
    margin-top: 6px;
}
.entrepreneur-registration .membership-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #5a2d0c;
}
.entrepreneur-registration .membership-badge {
    display: inline-block;
    padding: 5px 12px;
    background: #28a745;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 10px;
}
.entrepreneur-registration .membership-list {
    font-size: 11px;
    text-align: left;
    padding-left: 18px;
    margin: 0;
}

/* 🧱 Membership Grid Columns (like manufacturer) */
.entrepreneur-registration .row > .col-md-6 {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* 🔧 Responsive Adjustments */
@media (max-width: 992px) {
    .entrepreneur-registration .membership-card {
        min-height: auto;
    }
}

.entrepreneur-registration .terms-submit {
  display: flex;
  justify-content: space-between; /* Spread left and right content */
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap; /* Wrap on smaller screens */
}

.entrepreneur-registration .terms-submit > div:first-child {
  flex: 1 1 auto; /* Take available space on left */
}

.entrepreneur-registration .btn-group {
  display: flex;
  gap: 12px; /* Space between Back and Submit */
  flex-shrink: 0; /* Prevent shrinking */
}

.entrepreneur-registration .btn-back {
  background-color: #6c757d; /* Grayish back button */
  color: white;
  border-radius: 50px;
  font-weight: 600;
  padding: 8px 20px;
  font-size: 14px;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.entrepreneur-registration .btn-back:hover {
  background-color: #565e64; /* Darker gray hover */
  color: white;
}

.entrepreneur-registration .btn-brown {
  background: #c50000;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  padding: 8px 20px;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.entrepreneur-registration .btn-brown:hover {
  background: #a00000;
}
