body{
    font-family: Cambria, serif;
    background-color: mistyrose;
}
input[type=text]{
    width: 95%;
    padding: 10px;
    margin: 4px;
    box-sizing: border-box;
    border-bottom: 1px solid black;
    border-radius: 4px;
    color: black;
    background-color : thistle;
}

}
select{
    width: 95%;
    padding: 10px;
    margin: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid black;
    border-radius: 5px;
    color: black;
    background-color : lavender;
    cursor: pointer;

}
input[type=reset], input[type=button] {
    width: 95%;
    padding: 5px;
    margin: 5px;
    box-sizing: border-box;
    border-bottom: 1px solid black;
    border-radius: 5px;
    color: black;
    background-color : thistle;
    cursor: pointer;
}
table{
    width:33%;
    padding: 10px;/*vahe tekstist ääeiseni*/
    border-collapse: collapse;
    border: 1px solid deeppink;
    margin: 5px;
}
td{
    padding: 10px;
    text-align: left;
}
input[type=checkbox] + label{
    display: inline-block;
    width: 32px;
    height: 32px;
    padding-left: 40px;
    background-position: 0 0;
    background-repeat: no-repeat;
    line-height: 32px;
    cursor: pointer;
}
input[type=radio] + label{
    display: inline-block;
    width: 32px;
    height: 32px;
    padding-left: 40px;
    background-position: 0 0;
    background-repeat: no-repeat;
    line-height: 32px;
    cursor: pointer;
}
input[type=color]{
    width: 95%;
}
input[type=date]{
    width: 95%;
}