JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
</head>
<body>
        <div id="wrapper">
                <form class="forms" action="" method="POST">
                <input type="text" name="email" id="id_email" />
                <input type="submit" value="Зарегистрировать" />
                </form>
        </div>
</body>
</html>

CSS

.forms input[type="text"], .forms input[type="password"]{
    height: 24px;
    font-size: 14px;
    width: 400px;
    border: 1px solid #cccccc;
}

.forms input[type="submit"]{
    margin-top: 20px;
    display: block;
    width: 120px;
    height: 90px;
    font-size: 14px;
}