body {
    font-family: sans-serif;

}


h1 {
    color: red;
}

label {
    color: blue;
}

/* target form */
input[type=text], input[type=email], input[type=pwd]{
    width: 400px;
    height: 32px;
    background-color: lightgrey;
    border-radius: 2cap;
}

input[type=text]:focus, input[type=email]:focus, input[type=pwd]:focus {
    /* change the color of the hightlight */
    outline-color: orange;
}

