
#register {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 302px;
}
#register-bg {
    height: 302px;
    width: 100%;
    overflow: hidden;
}

#register-bg > .bg-0, #register-bg > .bg-1 {
    position: absolute;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
}
#register-bg > .bg-0 {
    height: 110vh;
    width: 100vw;
    background-image: url("../images/banner-bg.png");
    animation: register-bg-slide 1s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
}

#register-bg > .bg-1 {
    height: 100%;
    width: 100%;
    opacity: 0.7;
    background-image: url("../images/register-bg.svg");
}

@keyframes register-bg-slide {
    from {
        top: -200%;
    }
    to {
        top: 50%;
    }
}

#register > .title {
    color: #fff;
    font-size: 33px;
    line-height: 85px;
    margin-bottom: 10px;
    margin-top: -15px;
}

#register > a {
    width: 440px;
    height: 75px;
    color: #192063;
    font-size: 26px;
    font-weight: bolder;
    letter-spacing: 4px;
    line-height: 75px;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border-radius: 37px;
    cursor: pointer;
    transition: 0.4s ease-out;
}
.lg #register > a {
    box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0);
}
.lg #register > a:hover {
    transform: scale(1.06);
    box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.5);
}
#register > a:hover:active, #register > a:active {
    transform: scale(0.95);
}

.sm #register {
    height: 160px;
}
.sm #register-bg {
    height: 160px;
}

.sm #register > .title {
    color: #fff;
    font-size: 20px;
    line-height: 60px;
    margin-bottom: 10px;
    margin-top: -15px;
}

.sm #register > a {
    width: calc(100% - 40px);
    max-width: 300px;
    height: 55px;
    font-size: 20px;
    line-height: 55px;
}