html {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-right: 25px;
    margin-left: 25px;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 50px;
    text-align: center;
}

input[type="checkbox"], input[type="radio"] {
    cursor: pointer;
    padding: 10px;
}

input[type="range"] {
    cursor: w-resize;
    margin-right: 10px;
    margin-left: 10px;
}

input[type="radio"]+label {
    font-size: 20px;
    padding: 5px;
}

input[type="radio"]+label:hover {
    font-size: 25px;
    background-color: lightgray;
    border-radius: 10px;
}

input[type="text"], input[type="reset"], input[type="button"], input[type="email"] {
    padding: 5px;
    border-radius: 10px;
    border-bottom: 1px solid red;
    border-right: 1px solid red;
}

input[type="email"] {
    color: blue;
    width: 100px;
}

input[type="reset"], input[type="button"] {
    width: 180px;
    font-family: Verdana, sans-serif;
}

input[type="date"], input[type="color"] {
    width: 180px;
    height: 50px;
    text-align: center;
}

input[type="number"] {
    width: 180px;
    height: 50px;
    text-align: center;
}

input[type="file"] {
    width: 180px;
    border: 2px dashed lightgray;
    border-radius: 2px;
}

input[type="file"]:hover {
    border: 2px dashed gray;
    padding: 5px;
}

textarea {
    resize: none;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px;
}

form table {
    border-collapse: collapse;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}

form table td {
    border: 1px solid black;
    padding: 10px;
    width: 300px;
    height: 60px;
}