body {
  margin: 0;
  background-color: #f8fafb;
}

p, h1, h2, h3, h4 {
  text-align: center;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  row-gap: 10px;
  column-gap: 30px;
}

.bloco-1 {
  /* indiferente: */
  /*background-color: #6c63ff;*/
  height: auto;
  margin-top: 10%;
  padding: 10px;
  width: 50%;
  text-align: center;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  border-radius: 16px;
}

@media (max-width: 480px) {
  .bloco-1 {width: 80%;}
}

.titpage {
  font-size:2rem;
  color: #575a89;
  padding: 20px 0px;
}

.inputtext {
  background-color: #e6edf1;
  border-color: #e6edf1;
  width: 70%;
  padding: 15px 0;
  margin: 5px 0px;
  border-radius: 5px;
  font-size: 1rem;
  text-align: center;
}

.buttonenviar {  
  text-align: center;
  background-color: #6c63ff;
  border-color: #6c63ff;
  width: 70%;
  color: #f8fafb;
  padding: 15px 0px;
  margin: 15px 0px;
  border-radius: 0.25rem;
  font-size: 1rem;
}

.buttonenviar:hover {  
  text-decoration: bold;
  opacity: 0.9;
}

.buttonenviar:disabled {  
  text-decoration: none;
  opacity: 0.6;
  cursor: not-allowed;
}

.buttonenviar:hover:disabled {
  opacity: 0.4;
}