.login-logo {
    position: absolute;
}

.login-form-container {
    padding-top: 14vh;
}

.login-form {
    max-width: 475px;
    margin: 0 auto;
}

    .login-form form > div {
        margin-bottom: 20px;
    }

    .login-form .form-check {
        padding-left: 0;
    }

    .login-form .btn-pyro {
        height: 38px;
        width: 150px;
        margin-right: 25px;
    }

    .login-form hr {
        border-top: 2px solid var(--pyro-gray-dark);
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .login-form h5 {
        font-weight: bold;
    }

    .login-form .validation-summary-errors ul {
        list-style: none;
        padding-left: 0;
    }

#terms {
}

    #terms .slash {
        opacity: 0.7;
    }


.login-showcase-container {
    position: relative;
    z-index: 100;
    min-height: 100vh;
    padding-top: 14vh;
    background-color: var(--pyro-red);
    background-image: url('../images/bg_login.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    overflow: hidden;
}

    .login-showcase-container .watermark {
        display: block;
        position: absolute;
        top: 4%;
        left: 0;
        width: 100%;
        height: 550px;
        background-image: url('../images/watermark.svg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        opacity: 0.33;
    }

.login-showcase {
    position: relative;
    z-index: 100;
    max-width: 475px;
    margin: 0 auto 25px auto;
    /*animation: 0.5s ease-out 0s 1 slideFadeInLeft;*/
}

    .login-showcase :nth-child(-n+3):not(hr) {
        animation: 0.5s ease-out 0s 1 slideFadeInLeft;
        animation-fill-mode: both;
    }

    .login-showcase img {
        margin-top: -15px;
    }

    .login-showcase hr {
        color: white;
        border-top: 2px solid;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .login-showcase h5 {
        font-size: larger;
    }

    .login-showcase .feature-grid {
        max-width: 475px;
        margin-top: 25px;
    }

        .login-showcase .feature-grid > * {
            height: 145px;
            background-color: rgba(25, 25, 25, 0.4);
            background-clip: content-box;
            border-radius: 5px;
            backdrop-filter: blur(5px);
            color: white;
            display: grid;
            text-align: center;
            align-content: center;
            transition: box-shadow ease 0.25s;
        }

            .login-showcase .feature-grid > * img {
                margin: 0 auto 15px auto;
            }

            .login-showcase .feature-grid > *:hover {
                /*box-shadow: inset 0 0 10px rgba(var(--pyro-gray-light-rgb), 0.3);*/
                /*backdrop-filter: blur(15px);*/
            }

        .login-showcase .feature-grid :nth-child(odd) {
            animation: 0.5s ease-out 0s 1 slideFadeInLeft;
            animation-fill-mode: both;
        }

        .login-showcase .feature-grid :nth-child(even) {
            animation: 0.5s ease-out 0.2s 1 slideFadeInLeft;
            animation-fill-mode: both;
        }

.waves {
}

    .waves * {
        position: absolute;
        width: 100%;
        height: 50%;
        left: 0;
        bottom: 0;
        background-image: url('../images/bg_red_ambient_tall_alpha.png');
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 0.5;
        /*filter: blur(0.25px);*/
        animation-fill-mode: both !important;
    }

        .waves *:hover {
            animation-iteration-count: infinite !important;
        }

    .waves :first-child {
        animation: animateBackgroundY 3.3s 0.44s ease-in-out 75 alternate;
    }

    .waves :last-child {
        animation: animateBackgroundY 4.0s ease-in-out 75 alternate;
    }

/* column breakpoints */
/*.container-fluid {
    transition: all 0.1s ease-in-out;
}*/

/* disable animations for remote desktop or accessibility */
@media (prefers-reduced-motion) {
    body * {
        animation: none !important;
        transition: none !important;
    }
}

@media (width >= 1200px) {
    .login-showcase hr, .login-showcase h5 {
        margin-left: -32px;
        margin-right: -32px;
    }
}

@media (width < 1200px) {
    .login-form-container, .login-showcase-container {
        padding-top: 85px;
    }

    .login-form hr {
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

@keyframes slideFadeInLeft {
    0% {
        transform: translateX(15%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 100;
    }
}

@keyframes animateBackgroundY {
    from {
        background-position: 0 -12%;
    }

    to {
        background-position: 0 0;
    }
}

