.left-account-panel {
    position: relative;
    padding: 48px 56px;
    background-image: url("../images/Login-background.png");
    background-position: center;
    background-size: cover;
}

.panel-filter {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(23, 35, 76, 0.3);
    backdrop-filter: blur(3px);
}

.panel-content {
    position: relative;
}

.company-block .company-logo img {
    width: 64px;
    height: 64px;
    border: 0.5px solid #FFFFFF;
    border-radius: 9px;
}

.company-block .company-name {
    margin-left: 24px;
    font-weight: 500;
    line-height: 31px;
}

.text-block {
    max-width: 400px;
    margin-top: 188px;
    font-family: 'Noto Sans';
    font-style: normal;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;
}

    .text-block h2 {
        font-weight: 600;
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 12px;
    }


.right-account-panel {
    padding: 0 64px;
    box-shadow: -9px 0px 20px 0px #111212;
    z-index: 2;
    background-image: url(../images/account-right-bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

    .right-account-panel .account-header h2 {
        font-size: 48px;
        line-height: 48px;
    }

    .right-account-panel .account-header h3 {
        margin-top: 16px;
        font-weight: 400;
        font-size: 24px;
        line-height: 38px;
    }

    .right-account-panel .form-group:not(:first-child) {
        margin-top: 16px;
    }

    .right-account-panel .form-control {
        font-size: 14px;
    }

    .right-account-panel .btn,
    .right-account-panel .form-control {
        height: 45px;
    }

    .right-account-panel .submit-button-block {
        margin-top: 45px;
    }


@media (max-width: 280px) {

    .right-account-panel {
        padding: 0 40px;
    }

        .right-account-panel .account-header h2 {
            font-size: 32px;
            line-height: 32px;
        }

    .account-header .app-block .powered-by {
        margin-right: 0px;
    }
}

.validation-summary-errors {
    color: #B3261E;
    background-color: transparent;
    padding: 16px;
    border-radius: 2px;
    box-shadow: none;
    font-size: 14px;
    line-height: 20px;
}

    @media (max-width: 991px) {
        .left-account-panel {
            display: none;
        }

        .right-account-panel {
            padding: 0 40px;
            background-repeat: repeat-x;
        }
    }

    .fog-container {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin: -48px -56px;
}

.fog .img {
    position: absolute;
    height: 100%;
    width: 300vw;
}

    .fog .img.first {
        background: url("../images/fog-1.png") repeat-x;
        background-size: contain;
        background-position: center;
        animation: marquee 60s linear infinite;
    }

    .fog .img.second {
        background: url("../images/fog-2.png") repeat-x;
        background-size: contain;
        background-position: center;
        animation: marquee 40s linear infinite;
    }


    .fog .img.third {
        background: url("../images/fog-2.png") repeat-x;
        background-size: contain;
        background-position: center;
        animation: marquee 20s linear infinite;
    }


@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-200vw, 0, 0);
    }
}
