﻿body {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
}

.loginpanel {
    width: 20%;
    min-width: 200px;
    border: solid 1px #7d7d7d;
    border: solid 1px rgba(125, 125, 125, 0.5);
    border-radius: .25rem;
    position: relative;
    color: var(--logintext);
}

.loginpanel::before {
    content: "";
    background-color: var(--login);
    opacity: 0.65;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.login-body {
    padding: 0 1rem 1rem 1rem;
}

.login-logo {
    position: relative;
    max-width: 150px;
    max-height: 50px;
    margin-top: 1rem;
}

.password-recovery-link:link, .password-recovery-link:visited {
    color: var(--loginpasswordtext);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.flex-center {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.flex-center-horizontal {
    display: flex;
    flex-flow: row;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--primarycontrast);
}