@charset "utf-8";
/* CSS Document */

<style type="text/css">
html, body {
    font: 14px "Arial Black", Gadget, sans-serif;
    margin: 0;
    padding: 0;
}
#cadastro, ul {
    float: left;
    display: block;
}
#cadastro {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
ul {
    list-style: none;
    padding: 0;
    width: 100%;
}
li {
    display: block;
    margin-bottom: 20px;
}
label {
    width: 100%;
    display: block;
    margin-bottom: 5px;
}
#cadastro input[type=text] {
    border: solid 1px #fbfbfbf;
    height: 24px;
    line-height: 24px;
    display: block;
}
#cadastro input[type=submit] {
    color: #FFF;
    width: 150px;
    height: 24px;
    line-height: 24px;
    background: #069;
    border: 0 none;
}
</style>