.redius {
    border-radius: 20px !important;
}

/* QA-1 (bug 1), second pass. P1-T10 removed the "Remember me" .form-group (it persisted the
   AES-encrypted password client-side), which also took ~35px of vertical rhythm with it and left
   the card looking short.

   My first attempt added that 35px to the submit row's margin-top (40 -> 75px). That was the wrong
   lever: it did not make the card look complete, it just opened a conspicuous empty gap between
   the password field and the Sign In button -- 76px above the button against 31px below it, which
   reads as more unbalanced, not less.

   The card being short is a property of the card, so compensate on the card. Restore the theme's
   own .m-t-40 spacing above the button (balanced against the space below it) and give the card a
   little more vertical padding instead, so it keeps its presence without any empty band inside. */
.form-login {
    border: 1px solid #36C6D3;
    padding: 4% 3% 5%;
}

.login .content {
    overflow: inherit !important;
}

.btn-submit {
    background-color: #36C6D3;
    color: white;
    width: 170px;
    height: 40px;
}

.btn.focus, .btn:focus, .btn:hover {
    color: white;
    text-decoration: none;
}

.custom-bgcolor {
    background-color: #36C6D3 !important;
}

.custom-color {
    color: #36C6D3 !important;
}

.login ul.nav.navbar-nav.pull-right {
    margin-bottom: -5px;
}

.login li.dropdown.dropdown-user {
    padding-bottom: -3px;
}
