h1{
    background-color: red;
}
input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid red;
    border-radius: 4px;
    border-bottom: 2px solid blue;
}
input[type=text]:focus {
    background-color: whitesmoke;
}
input[type=text]:hover {
    background-color: yellowgreen;
}
