.amp-form__rejilla {
  display: flex;
  flex-wrap: wrap;
}

.amp-form__grupo {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(var(--amp-form-ancho, 100%) - 1px);
  max-width: 100%;
  min-width: 0;
}

.amp-form__etiqueta {
  margin-bottom: 6px;
}

.amp-form__campo {
  width: 100%;
  max-width: 100%;
  font: inherit;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
}

.amp-form__campo:focus {
  outline: none;
}

.amp-form__campo.is-error {
  border-color: currentColor;
}

textarea.amp-form__campo {
  resize: vertical;
}

.amp-form__acepta {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.amp-form__acepta .amp-form__campo {
  width: auto;
  flex: 0 0 auto;
  margin-top: 3px;
  padding: 0;
  border: 0;
}

.amp-form__error {
  display: block;
  min-height: 1em;
  margin-top: 5px;
  font-size: 0.82em;
}

.amp-form__miel {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.amp-form__boton {
  margin-top: 18px;
  font: inherit;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}

.amp-form__boton:disabled {
  opacity: 0.6;
  cursor: progress;
}

.amp-form__aviso:empty {
  display: none;
}

.amp-form__aviso {
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid currentColor;
  border-radius: 12px;
  font-size: 0.94em;
}

@media (max-width: 767px) {
  .amp-form__grupo {
    flex: 1 1 100%;
  }
}
