.contenedor-texto-inicial p {
  hyphens: auto;
  text-align: justify;
  margin-bottom: 1rem;
  font-size: 2rem;
}

@media (max-width: 400px) {
  .contenedor-texto-inicial p {
    font-size: 1.6rem;
  }
}

.supracontenedor-formulario {
  background-color: rgba(255, 255, 255, 0);
  margin-bottom: 10rem;
}

.contenedor-formulario {
  padding: 5rem;
  display: flex;
  background-color: rgba(255, 255, 255, 0.637);
  gap: 4rem;
  color: rgb(0, 0, 0);
  box-shadow: var(--sombras-contenedores);
}

@media (max-width: 800px) {
  .contenedor-formulario {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .contenedor-formulario {
    padding: 1rem;
  }
}

.contenedor-formulario div:nth-child(1) {
  width: 100%;
}
.contenedor-formulario div:nth-child(2) {
  width: 100%;
}
label,
input,
textarea {
  display: block;
  width: 100%;
}

label {
  margin-bottom: 0.5rem;
}

input {
  margin-bottom: 1rem;
  height: 3rem;
}

label {
  font-weight: 800;
}

textarea {
  height: 9rem;
}

button {
  padding: 1rem;
  display: block;
  margin: 2rem auto 0 auto;
}

.contenedor-formulario p {
  font-size: 1.2rem;
}
