fieldset {
    border: none;
}

input[type="text"],
input[type="password"] {
    margin: 4px;
    padding: 3px 6px;
    min-width: 200px;
    height: 26px;
    border: 1px #b6b6b6 solid;
    border-radius: 2px;
    background-image: url("../images/input-background.png");
    background-position: top left;
    background-repeat: repeat-x;
}

input[type="text"]:hover,
input[type="password"]:hover {
    border-color: #62afdb;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #62afdb;
    box-shadow: #62afdb 0 0 5px;
}

input[type="submit"] {
    padding: 4px 14px;
    border: 1px #21799e solid;
    border-radius: 2px;
    background-image: linear-gradient(top, #00A9EC 0%, #009BD3 100%);
    background-image: -o-linear-gradient(top, #00A9EC 0%, #009BD3 100%);
    background-image: -moz-linear-gradient(top, #00A9EC 0%, #009BD3 100%);
    background-image: -webkit-linear-gradient(top, #00A9EC 0%, #009BD3 100%);
    background-image: -ms-linear-gradient(top, #00A9EC 0%, #009BD3 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #00A9EC), color-stop(1, 0, #009BD3));
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.6px;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
    background-color: #009BD3;
    background-image: none;
    cursor: pointer;
}

input[type="submit"]:active {
    background-color: #0099d4;
    background-image: none;
    cursor: pointer;
    box-shadow: inset 0 0 5px 3px #0074ae;
}

input[type="checkbox"] {
    margin-right: 6px;
}

.login {
    margin: 20px 4px 0 0;
    float: right;
    font: inherit;    
    line-height: 1.3333333;
}
