I have a CSS using this code
input[type="text"] {
border: 1px solid #CCCCCC;
border-radius: 5px 5px 5px 5px;
box-shadow: none;
padding: 5px 8px;
}
and the HTML page has the following code to use the CSS
<input id="product-name" type="text" required="required">
I want to use the Razor in the view to render the text box called product-name How can i do this ?