/* Scope only inside Practitioner Registration */
.practitioner-registration {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

/* Background Circles */
.practitioner-registration::before,
.practitioner-registration::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 0, 0, 0.06);
    z-index: 0;
}
.practitioner-registration::before {
    width: 500px;
    height: 500px;
    left: -250px;
    top: -100px;
}
.practitioner-registration::after {
    width: 600px;
    height: 600px;
    right: -300px;
    bottom: -150px;
}

/* Inner Box */
.practitioner-registration .container {
    position: relative;
    z-index: 1;
    max-width: 900px;   /* ✅ wider */
    margin: auto;
    padding: 40px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Header */
.practitioner-registration h2 {
    font-size: 22px;
    font-weight: 700;
    color: #5a2d0c;
}

/* Form Controls */
.practitioner-registration .form-control {
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    padding: 10px 8px;
    font-size: 14px;
    background: transparent;
    transition: border-color 0.3s;
}
.practitioner-registration .form-control:focus {
    border-color: #c50000;
    outline: none;
    box-shadow: none;
}

/* Labels */
.practitioner-registration label {
    font-size: 13px;
    font-weight: 500;
}

/* Upload Box - Updated */
.practitioner-registration .upload-box {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    text-align: center;
    background: #fafafa;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.practitioner-registration .upload-box:hover {
     border-color: #c50000;
    background: #f9f2f2;
}

/* Optional: Limit size for any image/icon inside upload box */
.practitioner-registration .upload-box img {
    max-width: 80px;
    height: auto;
    pointer-events: none; /* So clicks pass through image */
}

/* Optional: Small text under the upload area */
.practitioner-registration .upload-box small {
    font-size: 13px;
    color: #6c757d;
}

/* Membership Card */
.practitioner-registration .membership-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #fff8f5;
}
.practitioner-registration .membership-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}
.practitioner-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;
}
.practitioner-registration .membership-list {
    font-size: 13px;
    text-align: left;
    padding-left: 18px;
    margin: 0;
}
/* Terms & Submit container */
.practitioner-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 */
}

/* Terms & checkbox block on left */
.practitioner-registration .terms-submit > div:first-child {
  flex: 1 1 auto; /* Take available space on left */
}

/* Buttons container */
.practitioner-registration .btn-group {
  display: flex;
  gap: 12px; /* Space between Back and Submit */
  flex-shrink: 0; /* Prevent shrinking */
}

/* Back button style */
.practitioner-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;
}

.practitioner-registration .btn-back:hover {
  background-color: #565e64; /* Darker gray hover */
  color: white;
}

/* Submit button style */
.practitioner-registration .btn-brown {
  background: #c50000;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  padding: 8px 20px;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.practitioner-registration .btn-brown:hover {
  background: #a00000;
}
