* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to right, #1c00f2, #453f96);

  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  /* padding: 0 50px; */
}

.chatbox {
  background: #1d61c2;
  width: 60%;
  /* min-width: 100%; */
  min-width: 250px;
  display: flex;
}

.col-1 {
  flex: 1;
}

.col-2 {
  flex-basis: 250px;
  background: #3874c9;
}

.msg-row {
  display: flex;
  align-items: center;
  margin: 40px;
}

.msg-text {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
  border-radius: 8px;
  flex-basis: 70%;
  font-weight: 300;
}

.msg-text h2 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 10px;
}

.msg-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 10px;
}

.msg-row2 {
  justify-content: flex-end;
}

.col-1 input {
  border: 0;
  outline: none;
  padding: 20px 40px;
  background: #3874c9;
  color: #fff;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
}

::placeholder {
  color: #fff;
}

.col-2 h3 {
  text-align: center;
  margin-top: 40px;
  font-weight: 400;
}

.col-2 ul {
  list-style: none;
  padding: 30px;
}

.col-2 ul li {
  padding: 5px 0;
}

.col-2 ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: red;
  display: inline-block;
  margin-right: 10px;
}

.col-2 ul li.online::before {
  background-color: greenyellow;
}

.col-2 ul li.offline::before {
  background-color: tomato;
}

.col-2 ul li.busy::before {
  background-color: yellow;
}
