JSFiddle - React, Tailwind, and code Playground

HTML

<form>
    <label for="info">Seu Texto</label>
                <textarea id="info"></textarea>

                <label for="cat">Seu Texto</label>

                <select class="selectpicker" id="cat">
                    <option>Mustard</option>
                    <option>Ketchup</option>
                    <option>Relish</option>
                </select>
</form>

CSS

form {
    width: 700px;
    color: red;
}
form label {
    color: blue;
    display: inline-block;
    background: black;
}
form textarea, input, select {
    display: block;
    border-radius: 2px;
    border: none;
    background: #DDDDDD;
    clear: both;
    margin-bottom: 20px;
}

form textarea {
    width: 625px;
    padding: 10px;
    height: 212px;
    margin: 0 auto;
}
form select {
    width: 625px;
    padding: 10px 12px;
    margin: 0 auto;
}