input[type=text], input[type="password"], select, textarea {
    width: 97%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #3356fa;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 6px;
    margin-bottom: 16px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #ef0230;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #008d3b;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: #ef0230;
}

.active {
    background-color: #3356fa;
}

body {
    background-color: #fffff;
    text-align: left;
    font-size: 16px;
    font-family:arial, sans-serif;
}

.dialog fieldset {
    border: 1px solid #777;
    padding: 6px 5px 10px 15px;
    margin-bottom: 6px;
}