﻿--arcoblue-6: 22, 93, 255;
--primary-6: var(--arcoblue-6);

.login-bg {
    width: 100vh;
    height: 100vh;
    position: fixed;
    overflow: hidden;
    z-index: 1;
}

.fly {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
}

.bg-fly-circle1 {
    left: 40px;
    top: 100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(22, 93, 255, 0.7), rgba(22, 93, 255, 0.4));
    animation: move-71da9cf7 2.5s linear infinite;
}

.bg-fly-circle2 {
    left: 15%;
    bottom: 5%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(22, 93, 255, 0.8), rgba(22, 93, 255, 0.4));
    animation: move-71da9cf7 3s linear infinite;
}

.bg-fly-circle3 {
    right: 12%;
    top: 90px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(22, 93, 255, 0.1), rgba(22, 93, 255, 0.4));
    animation: move-71da9cf7 2.5s linear infinite;
}

.bg-fly-circle4 {
    right: 5%;
    top: 60%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(22, 93, 255, 0.2), rgba(22, 93, 255, 0.4));
    animation: move-71da9cf7 3.5s linear infinite;
}

@keyframes move-71da9cf7 {
    0% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(25px) scale(1.1)
    }

    to {
        transform: translateY(0) scale(1)
    }
}
.login {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.login-box {
    width: 86%;
    max-width: 850px;
    /*min-height:530px;*/
    display: flex;
    z-index: 999;
    box-shadow: 0 2px 4px 2px #00000014;
}

.login-left {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(60deg, rgb(22, 93, 255), rgb(148, 191, 255));
}

.login-left__img {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%) translateY(-50%);
    transition: all .3s;
    object-fit: cover;
}

.login-right {
    width: 100%;
    height: 100%;
    background: var(--color-bg-1);
    display: flex;
    flex-direction: column;
    padding: 30px 30px 0;
    box-sizing: border-box;
}