The font size in the textarea in https://jsfiddle.net/Ljxwre2y/ is smaller than in the input field, how can I make them both the same size?
body {
font-family: 'Montserrat';
font-size: 30px;
}
input,textarea {
margin: 0;
padding: 0;
width: 100%;
}
textarea {
font-family: inherit;
}