Can someone help me with my text area issue? This is how it looks likehttps://i.sstatic.net/zfcbP.png
I am trying to reduce the scroll height so that it fits within its box. Although there is padding in the text area, it doesn't apply to the scrollbar. I have read about using properties like scroll-height, padding, margin, and start, but I'm having trouble getting it right probably because of my limited experience with those properties.
textarea {
resize: none;
scroll-padding: 50px 0 50px 0;
width: 450px;
display: block;
padding: 12px 15px 15px;
border-radius: 30px;
border: 2px solid #d0adff;
outline: none;
font-family: acumin-pro, sans-serif;
font-size: 1.3em;
color: rgb(90, 90, 90);
}
<textarea placeholder="Message" name="message" cols="30" rows="10"></textarea>