.reclamacao_container {
  color: #fff;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  width: 550px;
  height: 450px;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  margin-left: 10%;
  background-color: #e51e21;

}

.reclamacao_interna {
  display: flex;
  align-items: left;
  justify-content: center;
  flex-direction: column;
  gap: 15px;

}

.reclamacao_box {
  width: 450px;
  height: 150px;
  border: #fff solid 1px;
  border-radius: 5px;
  resize: none;

}

.info_reclamacoes input {
  display: flex;
  border: solid #fff 1px;
  border-radius: 3px;
  width: 100%;
  align-items: left;
  justify-content: center;
  flex-direction: column;

}


.button_reclamacao:hover {
  color: red;
}

.button_reclamacao {
  height: 50px;
  background-color: #fff;
  border-radius: 25px;
  border: solid #fff 2px;
}

@media screen and (max-width: 768px) {
  .reclamacao_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 440px;
    margin-left: 50px;
    max-width: 80%;
  }

  .info_reclamacoes {
    width: 100%;
  }

  .reclamacao_box {
    width: 100%;
    height: 100%;
  }
}