.iwkids-form-widget {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  --green1: #2D6A4F;
  --orange1: #F77F00;
  --orange2: #FCBF49;
  --cream: #FFFDF5;
  --gray1: #4A4A4A;
  --gray2: #7A7A7A;
  --white: #FFFFFF;
}

.iwkids-form-widget .m-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  margin-top: 0;
}

.iwkids-form-widget .m-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.iwkids-form-widget .m-form-row:last-of-type {
  margin-bottom: 0;
}

.iwkids-form-widget .m-form-grp {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.iwkids-form-widget .m-form-lbl {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray1);
  line-height: 1.4;
}

.iwkids-form-widget .m-form-input,
.iwkids-form-widget select.m-form-input {
  border: 1.5px solid var(--orange2);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 16px;
  font-family: 'Nunito', sans-serif;
  color: var(--gray1);
  background: var(--cream);
  width: 100%;
  line-height: 1.4;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.iwkids-form-widget select.m-form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A7A7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.iwkids-form-widget .m-form-input::placeholder {
  color: var(--gray2);
  opacity: 1;
}

.iwkids-form-widget .m-form-input:focus,
.iwkids-form-widget select.m-form-input:focus {
  outline: none;
  border-color: var(--orange1);
  box-shadow: 0 0 0 2px rgba(247, 127, 0, 0.15);
}

.iwkids-form-widget .m-form-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--orange1);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  line-height: 1.4;
  transition: background 0.2s ease;
}

.iwkids-form-widget .m-form-submit:hover {
  background: #e07200;
}

.iwkids-form-widget .m-form-submit:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(247, 127, 0, 0.35);
}

.iwkids-form-widget .m-form-note {
  text-align: center;
  font-size: 16px;
  color: var(--gray2);
  margin-top: 7px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .iwkids-form-widget .m-form-row {
    grid-template-columns: 1fr;
  }
}
