.formularioPage {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 78px 20px 92px 20px;
}

.formularioPage .contenedor {
  display: flex;
  width: 100%;
  max-width: 1192px;
  justify-content: center;
}

.formularioPage .cardFormulario {
  display: flex;
  width: 100%;
  max-width: 1068px;
  min-height: 574px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
  0px 10px 15px -3px rgba(0, 0, 0, 0.1),
  0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.formularioPage .imagen {
  display: flex;
  width: 100%;
  max-width: 466px;
  min-height: 574px;
  flex-shrink: 0;
}

.formularioPage .imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.formularioPage .contenido {
  display: flex;
  width: 100%;
  padding: 82px 47px 69px 47px;
  flex-direction: column;
  justify-content: center;
}

.formularioPage h1 {
  color: #a42326;
  font-size: 38px;
  line-height: 42px;
}

.formularioPage .intro {
  max-width: 465px;
  margin-top: 29px;
  color: #1f252b;
  font-size: 16px;
  line-height: 19px;
}

.formularioPage form {
  display: flex;
  width: 100%;
  margin-top: 32px;
  flex-direction: column;
  gap: 23px;
}

.formularioPage .mensajeEnvio {
  display: none;
  width: 100%;
  margin-top: 24px;
  padding: 13px 16px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 18px;
}

.formularioPage .mensajeEnvio--ok {
  color: #17613a;
  background-color: #e8f6ee;
}

.formularioPage .mensajeEnvio--error {
  color: #8f0c0e;
  background-color: #f8e7e8;
}

.formularioPage .mensajeEnvio.is-visible {
  display: block;
}

.formularioPage .fila {
  display: flex;
  width: 100%;
  gap: 31px;
}

.formularioPage .campo {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 9px;
}

.formularioPage label {
  color: #1f252b;
  font-size: 16px;
  line-height: 18px;
}

.formularioPage label span {
  color: #a42326;
}

.formularioPage input,
.formularioPage select {
  display: flex;
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  color: #1f252b;
  background-color: #ffffff;
  border: 1px solid #b8b8b8;
  border-radius: 5px;
  font-family: "Puritan", sans-serif;
  font-size: 16px;
  line-height: 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.formularioPage select {
  cursor: pointer;
}

.formularioPage input::placeholder {
  color: #8a8a8a;
}

.formularioPage input:focus,
.formularioPage select:focus {
  border-color: #a42326;
  box-shadow: 0 0 0 3px rgba(164, 35, 38, 0.12);
}

.formularioPage button {
  display: flex;
  width: 100%;
  max-width: 350px;
  min-height: 47px;
  margin-top: 11px;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  background-color: #a42326;
  border: 0;
  border-radius: 7px;
  font-family: "Puritan", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.formularioPage button:hover {
  background-color: #8f0c0e;
  transform: translateY(-2px);
}

.formularioPage button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

@media(max-width:980px) {

  .formularioPage {
    padding: 48px 20px 72px 20px;
  }

  .formularioPage .cardFormulario {
    max-width: 640px;
    flex-direction: column;
  }

  .formularioPage .imagen {
    display: none;
  }

  .formularioPage .contenido {
    padding: 48px 32px 50px 32px;
  }

  .formularioPage h1,
  .formularioPage .intro {
    text-align: center;
  }

  .formularioPage .intro {
    max-width: none;
  }

  .formularioPage button {
    max-width: none;
  }
}

@media(max-width:620px) {

  .formularioPage {
    padding: 36px 20px 58px 20px;
  }

  .formularioPage .contenido {
    padding: 39px 22px 42px 22px;
  }

  .formularioPage h1 {
    font-size: 32px;
    line-height: 36px;
  }

  .formularioPage .fila {
    flex-direction: column;
    gap: 23px;
  }
}
