.chat-input{
    display: flex;
    align-items: center;
    background: #1E1E1E;
    border-radius: 50px;
    padding: 10px 15px;
    width: 100%;
    max-width: 620px;
    margin: 0 auto
}
.send-message-btn{
    width: 40px;
    height: 40px;
    background: #4b5cd6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}
.chat-input-textarea{
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #b0b0b0;
    font-size: 16px;
    padding: 10px;
    height: 100%;
}