﻿.login-bg {
    background-color: #0d2360;
    background-image: url(/_content/PP.Shared/images/loginbg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
}

.progress-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}



.login-bg .progress-loading .progress-bar {
    height: 3px;
    width: 200px;
    margin-top: 16px;
    border-radius: 5px;
    background-color: #fef3e8;
}

.login-bg .progress-loading .progress-bar .progress-bar-inner {
    background-color: #f68e1e;
    height: 5px;
    width: 75px;
    border-radius: 5px;
}

.login-footer {
    position: absolute;
    bottom: 10px;
}

.login-bg .login-footer p {
    color: #ffffff;
    opacity: 0.6;
    margin: 0;
    font-size: 14px;
}

.loader {
    width: 45px;
    aspect-ratio: 4;
    background: radial-gradient(circle closest-side, #3f52a2 90%, transparent) 0% 50% / calc(100%/3) 100% no-repeat, radial-gradient(circle closest-side, #c52026 90%, transparent) 50% 50% / calc(100%/3) 100% no-repeat, radial-gradient(circle closest-side, #fdd917 90%, transparent) 100% 50% / calc(100%/3) 100% no-repeat;
    clip-path: inset(0 100% 0 0);
    animation: l1 3s steps(4) infinite;
    position: absolute;
    top: -4px;
    right: 0;
}

@keyframes l1 {
    to {
        clip-path: inset(0 -34% 0 0);
    }
}