.title {
    font-size: large;
    font-weight: bold;
    margin-bottom: 20px;
}

#errMsg {
    color: red;
    font-style: italic;
    text-align: left;
    margin-bottom: 20px;
}

form {
    max-width: 300px;
    background-color: #bdd2ff;
    border: 1px solid white;
    margin: 50px auto 0;
    padding: 1em;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    text-align: center;
}

input[type=text], input[type=password] {
    display: block;
    margin: 0 auto 1em auto;
    width: 90%; /*280px;*/
    border: 1px solid #818181;
    /*  -moz-border-radius: 1px;
    -webkit-border-radius: 1px; */
    padding: 5px;
}

input[type=submit], form a {
    border: none;
    margin-right: auto;
    margin-left: auto;
    padding: 6px;
    text-decoration: none;
    font-size: 12px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background: #cfdeff;
    color: black;
    box-shadow: 0 1px 0 white;
    -moz-box-shadow: 0 1px 0 white;
    -webkit-box-shadow: 0 1px 0 white;
}

    input[type=submit]:hover, form a:hover {
        background: #007cc2;
        cursor: pointer;
    }