<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
input {
padding: 10px;
margin: 5px;
width: 90%;
}
input[type="submit"] {
width: 100px;
}
.one {
color: #8ebf42;
}
.two {
color: #ff0066;
}
.three {
color: #1c87c9;
}
.one::placeholder {
color: #1c87c9;
}
.two::placeholder {
color: #ff0000;
}
.three::placeholder {
color: #8ebf42;
}
input:placeholder-shown {
border: 1px solid #095484;
}
</style>
</head>