body {
  background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  min-height: 100vh;
  width: 100%;
  display: flex;
  font-family: 'Montserrat', sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

h2 {
  color: green;
}

h4 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.25em;
  color: rgb(215, 26, 26);
}

.logo-chico {
  list-style-image: url(imagenes/logo_casa_letra_chico.png);
}

.ancho-ajustado {
  max-width: 80vw;
}

.form {
  background-color: rgb(255, 255, 255);
  width: 90%;
  max-width: 400px;
  margin: auto;
  border-radius: 1em;
  padding: 3.5em 1.5em;
}

.form_container {
  width: 100%;
  display: grid;
  gap: 1em;
  grid-auto-columns: 100%;
}

.form_title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: .4em;
}

.form_input {
  font-family: inherit;
  font-size: 1rem;
  padding: .8em 1em;
  outline: none;
  border: none;
  border: 1px solid #bbb0bc;
  border-radius: 0.2em;
}

.form_input--message {
  resize: none;
  padding: 1.8em 1em;
  margin-bottom: .5em;
}

.form_cta {
  font-family: inherit;
  font-size: 1rem;
  background-color: #089FE0;
  color: #fff;
  border: none;
  font-weight: 300;
  padding: .7em 0;
  border-radius: .2em;
  cursor: pointer;
  font-weight: 400;
}

@media (max-width:450px) {
  .form{
    padding: 3.5em 1em;
  }
}