body{
    font-family: Arial, sans-serif;
}
h1{
    font-size:50px;

    padding:2%;
}

input[type='radio']+label{
    font-size:20px;
    width:auto;
    padding:5px;
}
input[type='radio']+label:hover{
    font-size:30px;
    background-color: whitesmoke;
}

input[type='checkbox']+label{
    font-size:15px;
    width:auto;
    padding:5px;
    cursor: pointer;
}

input[type='text'],
input[type='reset'],
input[type='button'] {
    padding:10px;
    border-radius:5px;
    border-bottom:1px solid red;
    border-left:1px solid red;
}
input[type='reset'],
input[type='button'] {
    width:180px;
    font-family: Georgia,serif;
}

table{
    border-collapse:collapse;
    border:1px solid gray;
}


input[type='number'] {
    padding:5px;
    border:3px solid blue;
}

textarea {
    border:1px solid green;
    padding:5px;
}

input[type='date'] {
    padding:5px;
    border:2px solid orange;
}

input[type='color'] {
    border:darkolivegreen 4px;
    cursor:pointer;
}

input[type='file'] {
    border:2px solid darkblue;
    padding:3px;
}

input[type='email'] {
    padding:5px;
    border:3px solid purple;
}

input[type='range'] {
    cursor:pointer;
    accent-color:red;
}
