.checkbox-label {
  font-size: 13px; /* Adjust the font size here */
  display: block;  /* Ensures each checkbox is on a new line */
  text-align: justify; /* Justify the text */
  margin-bottom: 10px; /* Adds spacing between the checkboxes */
}


#submitFormButton {
  background-color: #6A64F1; /* Green */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}



 .flex-container {
        display: flex;
        gap: 15px; /* Adjust the gap between items */
    }

 table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        th, td {
            padding: 10px;
            text-align: left;
            border: 1px solid #ddd;
			font-size: 13px;
			  font-weight: normal;
    vertical-align: top; /* Add this line to top-align the content */

        }
        th {
            background-color: #f8f9fa;
        }
        .form-control {
            width: 100%;
        }
      .btn {

  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 10px;
  allign :center;

}
.button-group {
    display: flex; /* Use flexbox to align buttons horizontally */
    gap: 10px; /* Optional: Space between the buttons */
}




.btn:focus {
    outline: none; /* Remove focus outline */
}


		
		
.formbold-progress-bar {
  position: relative; /* Set position relative for absolute positioning of percentage */
  width: 100%;
  background-color: #e0e0e0; /* Background color of the progress bar */
  border-radius: 5px; /* Rounded corners */
  height: 8px; /* Height of the progress bar */
  margin-top: 10px;
  margin-bottom: 20px; /* Space between progress bar and form title */
}

.formbold-progress {
  height: 100%;
  background-color: orange; /* Color of the progress */
  border-radius: 5px; /* Rounded corners */
  transition: width 0.4s ease; /* Smooth transition */
}

.formbold-progress-percentage {
      font-family: 'Trebuchet MS', sans-serif;

  position: absolute; /* Position the percentage text absolutely */
  top: -20px; /* Adjust top positioning */
  left: 50%; /* Center it horizontally */
  transform: translateX(-50%); /* Adjust centering */
  font-weight: bold; /* Make it bold */
  color: #6A64F1; /* Match the color with the progress bar */
}



  /* Add styles for the header */
  .header-menu {
  background: rgba(255, 255, 255, 0.9); /* White background with 80% opacity */
    padding: 10px 20px; /* Padding around the menu */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 20px; /* Space between menu and form */
    width: 1100px; /* Set header width */
    margin: 0 auto; /* Center the header */
  }

  .header-content {
    display: flex; /* Flexbox for horizontal layout */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space between logo and menu */
  }

  .mbot-logo {
    max-width: 120px; /* Adjust as needed */
    margin-right: 20px; /* Space between logo and menu */
  }

  .header-menu ul {
    list-style: none; /* Remove bullet points */
    display: flex; /* Flexbox for horizontal layout */
    gap: 20px; /* Space between items */
  }

.header-menu a {
  text-decoration: none; /* Remove underline from links */
  color: black; /* Text color */
  font-weight: 500; /* Font weight */
  font-size: 13px; /* Font size */
      font-family: 'Poppins', sans-serif;

}

.header-menu a:hover {
  text-decoration: none; /* Remove underline on hover */
}


  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
 body {
      font-family: 'Poppins', sans-serif;
    background-image: url('img/bp.png'); /* Add your background image here */
    background-size: cover; /* Cover the entire viewport */
    background-position: center; /* Center the background image */
    background-attachment: fixed; /* Keep the background image fixed */
    background-repeat: no-repeat; /* Prevent background image from repeating */
  }

.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.formbold-form-wrapper {
  margin: 0 auto;
  max-width: 1100px; /* Updated width */
  width: 100%;
  background: rgba(255, 255, 255, 0.9); /* White background with 80% opacity */
  padding: 20px; /* Padding for space inside the wrapper */
  border-radius: 10px; /* Optional: adds rounded corners */
}


  .formbold-steps {
    padding-bottom: 18px;
    margin-bottom: 35px;
    border-bottom: 4px solid #DDE3EC;
	    transition: border-bottom 0.3s ease; /* Smooth transition */

  }
  .formbold-steps ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .formbold-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 13px; /* Updated font size */
    line-height: 15px;
    color: #536387;
  }
  .formbold-steps li span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DDE3EC;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-weight: 500;
    font-size: 12px; /* Updated font size */
    line-height: 24px;
    color: #536387;
  }
  .formbold-steps li.active {
    color: #07074D;
  }
  .formbold-steps li.active span {
    background: #6A64F1;
    color: #FFFFFF;
  }
  .formbold-input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
  }
  .formbold-input-flex > div {
    width: 50%;
  }
  .formbold-form-input {
    width: 100%;
    padding: 13px 22px;
    border-radius: 5px;
    border: 1px solid #DDE3EC;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 14px; /* Updated font size */
    color: #536387;
    outline: none;
    resize: none;
  }
  .formbold-form-input:focus {
    border-color: #6a64f1;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }
  .formbold-form-label {
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
    font-size: 13px; /* Updated font size */
    color: #536387;
  }
  .formbold-form-btn-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 55px;
  }
  .formbold-back-btn {
    font-weight: 500;
    font-size: 13px; /* Updated font size */
    padding: 13px 25px;
    border-radius: 5px;
    border: 1px solid #DDE3EC;
    background: transparent;
    color: #536387;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
  }
  .formbold-back-btn.active {
    display: inline-block;
  }
  .formbold-back-btn:hover {
    background: #6A64F1;
    border: 1px solid #6A64F1;
    color: white;
  }
  .formbold-btn {
    font-size: 13px; /* Updated font size */
    padding: 13px 25px;
    border-radius: 5px;
    border: none;
    background-color: #6A64F1;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .formbold-btn:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }
  .formbold-form-step-1,
  .formbold-form-step-2,
  .formbold-form-step-3,
  .formbold-form-step-4,
  .formbold-form-step-5,
  .formbold-form-step-6 {
    display: none;
  }
  .formbold-form-step-1.active,
  .formbold-form-step-2.active,
  .formbold-form-step-3.active,
  .formbold-form-step-4.active,
  .formbold-form-step-5.active,
  .formbold-form-step-6.active {
    display: block;
  }
  
  
  .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 40%; /* Could be more or less, depending on screen size */
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  display: none;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#beginButton {
  background-color: #6A64F1; /* Green */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  allign :center;
}

#beginButton:hover {
  background-color: #536387; /* Darker green */
}
