﻿


.Login {
    width: 80%;
    height: 130px;
    padding: 35px;
    padding-top:50px;
    margin-bottom:20px;
    background: var(--boxColor);
    border: var(--boxBorder);
    box-shadow: var(--boxShadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Input {
    display: flex;
    flex-direction: column;
    row-gap: 13px;
    justify-content:center;
    align-items:center;
}

.Loader {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.Alert {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 13px;
}

.HideLogin {
    animation-name: MoveOutView;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

.ShowLogin {
    animation-name: MoveInView;
    animation-duration: 0.4s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}



.LoginPreload {
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

    .LoginPreload span {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin: 0px 5px;
        position: relative;
        background-color: var(--mainColor);
        animation: preload 4s ease infinite;
    }

        .LoginPreload span:first-child {
        }

            .LoginPreload span:first-child::before {
            }

        .LoginPreload span:nth-child(2) {
            animation-delay: 0.5s;
        }

            .LoginPreload span:nth-child(2)::before {
                animation-delay: 0.5s;
            }

        .LoginPreload span:nth-child(3) {
            animation-delay: 1.0s;
        }

            .LoginPreload span:nth-child(3)::before {
                animation-delay: 1.0s;
            }


        .LoginPreload span:last-child {
            animation-delay: 1.5s;
        }

            .LoginPreload span:last-child::before {
                animation-delay: 1.5s;
            }



.LoginConsole {
    width:100%;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
}