html example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="login-container">
<h2>Login</h2>
<form>
<div class="input-group">
<label for="userId">User ID</label>
<input type="text" id="userId" name="userId" required>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<div class="btn-group">
<button type="submit">Admin Login</button>
<button type="submit">Underwriter Login</button>
</div>
</form>
</div>
</body>
</html>