.title {
    display: flex;
    justify-content: center;
}

.login-card {
    display: flex;
    flex-direction: column;
    justify-content: center;

    .card-username {
        display: flex;
        justify-content: center;
    }

    .card-password {
        display: flex;
        justify-content: center;
    }

    .btn-login{
        display: flex;
        justify-content: center;
        width: 100px;
        border-radius: 200px;
        font-weight: bold;
        font-size: 1.0em;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        line-height: 12px;
        margin-right: 3px;
        padding: 7px 16px 6px;
        text-decoration: none;
        background-color: #838a90;
        background-image: linear-gradient(180deg, #838a90, #414549);
        text-shadow: #000 0 1px 0;
        box-shadow: 0 1px 1px rgba(0,0,0,0.1), 0 1px 0 0px rgba(255,255,255,0.2) inset;
        border: solid 1px #484e53;
        border-color: #484e53;
        border-top-color: #616a71;
        border-right-color: #484e53;
        border-bottom-color: #363b3f;
        border-left-color: #484e53;
        color: #efefef;
        cursor: pointer;
    }
}

