/* Container & base */
.gvfm-form { max-width: 820px; margin: 0 auto; padding: 18px; box-sizing: border-box; font-family: inherit; }

/* Row / Column layout similar to col-md-6 pairs */
.gvfm-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

/* Each column behaves like col-md-6 */
.gvfm-col {
  box-sizing: border-box;
  flex: 0 0 calc(50% - 10px);      /* two columns with gap */
  max-width: calc(50% - 10px);
}

/* Full width rows (address + submit) */
.gvfm-row-full .full-width,
.gvfm-col.full-width {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Labels */
.gvfm-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

/* Inputs and selects styled the same */
.gvfm-input {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px !important;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Select arrow */
.gvfm-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='gray'><path d='M5.23 7.21a.75.75 0 011.06.02L10 10.94l3.71-3.71a.75.75 0 111.06 1.06l-4.24 4.25a.75.75 0 01-1.06 0L5.21 8.29a.75.75 0 01.02-1.08z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px; /* room for arrow */
  cursor: pointer;
}

/* Button */
.gvfm-submit {
	display: inline-block;
	width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	border-radius: 8px;
	border: none;
	background: #2c6bed;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	box-sizing: border-box;
	box-shadow: 0 8px 18px rgba(27, 91, 247, .25);
	margin-bottom: 30px;
}
#dental-banner-section #trial-form {
    background: #fff;
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(9, 20, 60, .06);
	padding: 40px;
}
.gvfm-row-full:last-child {
    margin-bottom: 0;
}
#dental-banner-section #trial-form h3 {
    color: #333;
    padding-bottom: 0;
    line-height: 1em;
    font-weight: 800;
}
/* Hover */
.gvfm-submit:hover { background: #1e4fbd; }

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .gvfm-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.gvfm-loader {
  margin-top: 12px;
  padding: 10px;
  text-align: center;
  color: #2c6bed;
  font-weight: 600;
  font-size: 14px;
}
.gvfm-submit[disabled] {
  background: #a1a1a1;
  cursor: not-allowed;
}

.business_address_error {
  display: none;
  margin-top: 6px;
  font-size: 14px;
}

.gvfm-error {
  border-color: #d9534f !important;
  box-shadow: 0 0 0 3px rgba(217,83,79,0.08);
}

.gvfm-loader {
  margin-top: 12px;
  padding: 10px;
  text-align: center;
  color: #2c6bed;
  font-weight: 600;
  font-size: 14px;
}

