/* Base button */
a.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    text-shadow: -1px -1px 0 rgba(0,0,0,.1);
    text-decoration: none;
}

/* Primary button */
a.btn-primary {
    color: #fff;
    background-color: #446e9b;
    border-color: #446e9b;
    background-image: linear-gradient(#5f8ab9, #3e648d 50%, #385a7f);
    background-repeat: no-repeat;
    border: 1px solid #2e4b69;
}

/* Override ALL link states */
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:active,
a.btn-primary:focus {
    color: #fff;
    text-decoration: none !important;
}