body{
    font-family: Arial, serif; /*fondi tüüp*/
    background-color: lavender; /*taust*/
}
input[type=text]{
    width: 20%;
    padding: 10px;
    margin: 5px;
    box-sizing: border-box;
    border-bottom: 1px solid skyblue;
    border-radius: 5px;
    background-color: whitesmoke;
    color: black; /*teksti värv*/
}
select{
    width: 20%;
    padding: 10px;
    margin: 5px;
    box-sizing: border-box;
    border-bottom: 1px solid skyblue;
    border-radius: 5px;
    background-color: whitesmoke;
    color: black; /*teksti värv*/
    cursor: pointer;
}
input[type=reset], input[type=button] {
    width: 10%;
    padding: 10px;
    margin: 5px;
    box-sizing: border-box;
    border-bottom: 1px solid skyblue;
    border-radius: 5px;
    background-color: whitesmoke;
    color: black; /*teksti värv*/
    cursor: pointer;
}
table{
    width: 50%;
    padding: 10px; /*vahe tekstist ääriseni*/
    border-collapse: collapse;
    border: 1px solid gray;
    margin: 5px; /*vahe lehest tabelini*/
}
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;
}
label{
    font-weight: bold;
}
