body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(45deg, rgb(17, 26, 71), rgb(50, 64, 131));
}
.input-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgb(107, 122, 196);
  padding: 20px 70px;
  border-radius: 10px;
}
.message-boxs p {
  background: rgb(112, 126, 197);
  border-radius: 10px;
  padding: 20px 70px;
  color: rgb(0, 0, 0);
}
input {
    border: none;
    padding: 10px 50px;
}
input:focus{
    border:none;
}
