body{
    font-family: Arial, sans-serif;
}
h1{
    font-size: 50px;
    text-align: center;
    padding-top: 2%;
}
label{
    font-weight: bold;
}
input[type="checkbox"]{

}
input[type="radio"] + label{
    font-size: 20px;
    width: auto;
    padding: 5px;
}
input[type="text"], input[type="reset"], input[type="button"] {
    padding: 10px;
    border-radius: 5px;
    border-bottom: 1px solid pink;
    border-left: 1px solid pink;
}
input[type="reset"], input[type="button"] {
    width: 180px;
    font-family: Verdana, sans-serif;
}
input[type="reset"]{
    color: white;
    background-color: red;}

input[type="reset"]:hover{
    color: red;
    background-color: white;
}
input[type="button"]{
    color: white;
    background-color: limegreen;
}
input[type="button"]:hover{
    color: green;
    background-color: white;
}
table {
    border-collapse: collapse;
    border: 1px solid;
    margin: 20px auto;
}
td {
    padding: 10px;
    text-align: left;
}
input[type="color"] {
    padding: 0;
    width: 100px;
    height: 50px;
}
input[type="range"] {
    width: 100%;
    background-color: #f0f0f0;
}
input[type="checkbox"],
input[type="radio"] {
    margin-right: 10px;
}

input[type="number"] {
    width: 100px;
    height: 25px;
    background-color: #e0f7fa;
    border: 1px solid #00bcd4;
    font-family: 'Courier New', monospace;
}
input[type="email"], input[type="textarea"]{
    width: 75%;
    padding: 5px;
    border-radius: 5px;
}
input[type="date"]{
    width: 25%;
    padding: 5px;
    border-radius: 5px;
    border-color: gray;
}
input[type="file"] {
    padding: 5px;
    background-color: lightsalmon;
    border: 1px solid orange;
}

/*
2. создать еще математичиских вопросо, input date, input color, input mail
3. добавить 2 строчки к каждому в css*/