
form {
    margin-left: auto;
    margin-right: auto;
    font: 11px;
    color: #888;
}

form h1 {
    font: 25px;
    padding: 0px 0px 10px 40px;
    display: block;
    border-bottom: 1px solid #DADADA;
    margin: -10px -30px 30px -30px;
}


form label {
    display: block;
    margin: 5px 5px 5px;
}

form label>span {
    float: left;
    width: 20%;
    text-align: right;
    padding-right: 10px;
    margin-top: 0px;
    color: #333;   
    font-weight: bold;
}

form input[type="text"], form input[type="email"], form input[type="password"], form textarea {
    border: 1px solid #e0e0e0;
    color: #888;
    height: 20px;
    line-height:15px;
    margin-top: 2px;
    outline: 0 none;
    padding: 5px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;    
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

form select {
    text-indent: 0.01px;
    text-overflow: '';
    height: 30px;
    line-height:15px;
    width: 140px;
}

form textarea {
    height:60px;
    width: 95%;
}

input, button, textarea, select {
    font-family:  roboto, arial, tahoma, arial, tahoma, Helvetica, sans-serif;
    font-size: 14px;    
}

.button {
    background: black;
}

button[type="submit"] {
    background: #000;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button:hover {
    cursor: pointer;
}

button[disabled] {
    background: #666;
    color: #333;
    cursor: not-allowed;
}

