如何在网页中设置可输入账号和密码的横线而没有输入框

如何在网页中设置输入账号的横线
而没有输入框

设置css样式就好

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        input {
            border: none;
            outline: none;
        }
        .box{
            width: 200px;
        }
    </style>
</head>
<body>
    <div class="box">
        <input type="text" placeholder="邮箱">
        <hr>
    </div>
</body>
</html>