:root
{
    --theme-color: #4a94cc; /* Theme color */
    /* NOTE: Since particles only accept hex colors and are drawn using theme color,
    theme color variable should always set to a hex color value.
    */
    
}

.login-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 5px 15px;
    min-height: 100%;
}

.login-container .form-control
{
    border: 1px solid var(--theme-color);
}

.login-card
{
    border-radius: 10px;
    max-width: 400px;
    margin-bottom: 10%;
    width: 100%;
    z-index: 2;
}

.login-card .card-body
{
    padding-left: 2rem;
    padding-right: 2rem;
}

.login-card .card-logo
{
    max-height: 200px;
}

.login-container #copyright
{
    align-self: flex-end;
    position: absolute;
    z-index: 1;
}

.login-container #locale
{
    position: absolute;
    top: 15px;
    right: 15px;
}

.login-container #locale button
{
    z-index: 1;
}

#screen-particles canvas
{
    display: block;
}

/* ---- particles.js container ---- */
#screen-particles
{
    position:absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

/* ---- stats.js ---- */
.count-particles
{
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles
{
    font-size: 1.1em;
}

#stats, .count-particles
{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats
{
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles
{
    border-radius: 0 0 3px 3px;
}