      .mbform {
      display: flex;
      flex-direction: column;
      width: 100%;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
      border-radius: 50px;
      border: 8px solid #cbcbcb;
      border-top: none;
      border-bottom: none;
    }
    .mblabel {
      margin-top: 5px;
      font-weight: 400;
      color: #000000;
      text-align: left;
      font-size: 16px;
    }
label {
    cursor: default;
    font-weight: 400;
    color: #000000;
}
input[type="checkbox"] {
  appearance: none;               /* Remove default styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 40px;
  height: 24px;
  border: 3px solid #b3b3b3;         /* Border color */
  border-radius: 4px;             /* Rounded corners */
  background-color: #ffffff;
  cursor: pointer;
  position: relative;
  margin: 0px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

input[type="checkbox"]:checked {
  background-color: #4cb0ff;         /* Fill color when checked */
  border: 3px solid #008eff;
  margin: 0px;
}

input[type="checkbox"]:checked::after {
  content: "YES";
  color: #000000;
  font-size: 13px;
	font-weight:bold;
  position: absolute;
  top: 0px;
  left: 4px;
}

input[type="checkbox"]:focus {
  outline: 2px solid #2196F3;
  outline-offset: 2px;
}

    .mbselect, .mbselect2 {
      padding: 5px;
      margin-top: 2px;
      border-radius: 5px;
      box-sizing: border-box;
      margin-right: 0;
      margin-left: 0;
      width: 100%;
      cursor: pointer;
      font-size: 16px;
      border: 2px solid #d1d1d1;
      color: #000000;
      font-weight: 400;
      background-color: #ffffff;
    }
    .mbselect2 {
      height: auto;
    }
    .mbinput, .mbtextarea {
      padding: 5px;
      margin-top: 2px;
      border-radius: 5px;
      box-sizing: border-box;
      margin-right: 0;
      margin-left: 0;
      width: 100%;
      font-size: 16px;
      border: 2px solid #cdcdcd;
      color: #000000;
      font-weight: 400;
      background-color: #ffffff;
    }
    .mbtextarea {
      height: auto;
		max-width:600px;
		resize:none
    }
   .mbbutton {
  border: 0px solid #ffffff;
  color: #000000;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  background-image: linear-gradient(to right, rgb(178 178 178 / 46%) 0%, #ffffff 50%, rgb(178 178 178 / 52%) 100%);
  padding: 12px 20px;
  margin-top: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* Hover effect */
.mbbutton:hover {
  background-color: rgba(77, 77, 77, 0.8);
    color: #000000;
  border-color:#585858
}

/* Focus state for better accessibility */
.mbbutton:focus {
  box-shadow: 0 0 5px rgba(91, 155, 213, 0.6); /* Focus shadow */
}
    .mbsection-title {
      margin-top: 30px;
      font-size: 23px;
      color: #000000;
      text-align: left;
      font-weight: 400;
    }
	.mbboxoption{
	text-align: left;
	}
	.mbcm{
	padding: 35px;
	border-radius: 20px;
	color: #000000;
	font-weight: bold;
	font-size: 25px;
	font-family: system-ui, sans-serif;
	}
	.captcha-container {
  width: 170px;
  height: 50px;
  border: 3px solid #b5b5b5;
  margin-top: 15px;
  background-color: #ffffff;
  overflow: hidden;
  border-radius: 10px;
}

#captcha-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
.mbcheckbox-wrapper {
  display: flex;
  align-items: center;       /* Vertically align checkbox + text */
  gap: 12px;                 /* Space between checkbox and label */
  margin: 10px 0;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  font-family: system-ui, sans-serif;
}

.mbcheckbox-wrapper input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  border: 3px solid #333;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.mbcheckbox-wrapper input[type="checkbox"]:checked {
  background-color: #333;
  border-color: #333;
}

.mbcheckbox-wrapper input[type="checkbox"]:checked::after {
  content: "âœ”";
  color: white;
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 4px;
}

.mbcheckbox-wrapper input[type="checkbox"]:focus {
  outline: 2px solid #2196F3;
  outline-offset: 2px;
}
