/*Style for form exercise*/

*{
    margin: 0;
    padding: 0;
}

body{
    background: rgb(240, 231, 232);
    padding: 100px;
}

form{
    max-width: 580px;
}

fieldset{
    padding: 10px;

}

label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    margin-top: 5px;
}

input{
    margin-bottom: 10px;
    height: 20px;
    width: 100%;
}

input[type="submit"]{
    width:auto;

}

input[type="radio"], input[type="checkbox"]{
    height: auto;
    width: auto;
    margin-right: 10px;
    margin-bottom: 3px;
}

form li{
    list-style: none;
}

form ul{
    margin-left: 15px;
}
textarea{
    width: 100%;
    height: 110px;
    margin-bottom: 10px;
}

select{
    margin-bottom: 10px;
}