﻿:root {
    --form-height: 600px;
}

.container-fluid {
    padding: 0px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-box {
    background-color: #FFF;
    float: none;
    margin: 10px;
    border-radius: 25px !important;
    -webkit-box-shadow: 0px 0px 72px -10px rgba(0, 0, 0, 0.44);
    -moz-box-shadow: 0px 0px 72px -10px rgba(0, 0, 0, 0.44);
    box-shadow: 0px 0px 72px -10px rgba(0, 0, 0, 0.44);
}


@media (min-width: 768px) { /* md */
    .login-box {
        margin: 20px auto;
    }
}

footer .h6 {
    color: #666666;
    text-decoration: none;
    font-weight: bold;
}

.strike {
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

    .strike > span {
        position: relative;
        display: inline-block;
        color: rgba(128, 128, 128, 0.8);
        font-size: 12px;
    }

        .strike > span:before,
        .strike > span:after {
            content: "";
            position: absolute;
            top: 50%;
            width: 9999px;
            height: 1px;
            background: rgba(128, 128, 128, 0.6);
        }

        .strike > span:before {
            right: 100%;
            margin-right: 15px;
        }

        .strike > span:after {
            left: 100%;
            margin-left: 15px;
        }

.carousel {
    /*width: 100%;*/
    height: 100%;
    overflow: hidden;
    border-radius: 0px 25px 25px 0px;
}

.carousel-caption {
    left: 5%;
    right: 5%;
    font-weight: 550 !important;
}

.carousel-caption h5 {
    font-weight: 550 !important;
}

.carousel-inner {
    /*width: 100%;*/
    height: 100%;
}

.carousel-item {
    height: 100%;
}

    .carousel-item img {
        width: 100%;
        height: 100%;
        max-height: var(--form-height);
        object-fit: cover;
        object-position: center;
    }

.carousel-item:before {
    content: "";
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}


