.areaView {
    margin: auto;
    display: flex;
}

.areView2 {
    display: flex;
}

.areaWelcome {
    margin: auto;
    width: 500px;
    height: 280px;
    align-items: center;
    display: flex;
    background-color: var(--bg-window);
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
    animation: showStartDiv 1000ms ease;
    position: relative;
}

.splitLineV {
    width: 2px;
    border-radius: 4px;
    background-color: var(--border-color);
    height: 280px;
    margin: auto 16px;
    /*animation: showElem 150ms linear;*/
}

.splitLineH {
    border-radius: 4px;
    background-color: var(--border-color);
    height: 1px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.areaTwoButton2 {
    display: block;
}

.areaTwoButton {
    height: 280px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-window);
    color: var(--text-additional);
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    /*animation: showElem 150ms linear;*/
}

.buttonBlack {
    background-color: var(--text-color);
    color: var(--background);
    border: solid 1px var(--text-color);
    border-radius: 2px;
    height: 28px;
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    font-size: 16px;
    margin-top: 2px;
}

.buttonBlack:hover {
    color: #FFFFFF;
    border-color: var(--active-color);
}

.buttonBlackTwo {
    margin-top: 20px;
}

.imgBack {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* inputs */
.headerLabel {
    font-size: 14px;
    margin-left: 7%;
    margin-top: -10px;
    animation: showElemOpacity linear 300ms;
    color: var(--text-additional);
}

.input_login {
    text-align: center;
    padding: 4px;
    border-color: var(--text-color);
    border-right: none;
    border-top: none;
    border-left: none;
    font-size: 20px;
    background-color: var(--bg-window);
    width: 85%;
    border-radius: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    transition: border-color 0.2s, margin-top 0.3s;
}

.input_login:focus {
    border-color: var(--active-color);
    margin-top: 20px;
}

.showPassword {
    font-size: 12px;
    cursor: pointer;
    margin-top: 6px;
    display: inline-block;
}

.showPassword:hover {
    color: var(--active-color);
}

.codeChangePass {
    width: 40px;
    height: 60px;
    font-size: 32px;
    text-align: center;
    border-radius: 4px;
    border: 2px solid var(--border-color);
    align-items: center;
    display: flex;
}

.codeChangePass:focus {
    border-color: var(--active-color);
}

.lab_header_active {
    color: var(--text-color);
    display: flex;
    justify-content: center;
    position: absolute;
    margin-top: -36px;
    animation: lab_header_active_Show 500ms ease;
    width: 100%;
    left: 0;
}

.footer-link-label {
    font-size: 0.8rem;
    cursor: pointer;
    opacity: 0.8;
}

.footer-link-label:hover {
    text-decoration: underline;
    opacity: 1;
}

.agreementArea {
    font-size: 0.75rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.agreementArea2 {
    display: flex;
    align-items: center;
}

.agreementArea3 {
    display: flex;
    flex-direction: column;
    margin-left: 14px;
    gap: 2px;
}

.agreementAreaCheckBox {
    display: flex;
    align-items: center;
}

#codeBeta {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    height: 26px;
}

@media screen and (max-width: 600px) {
    .areaView {
        display: block;
        margin-top: 15%;
        width: 100%;
    }

    .areView2 {
        display: block;
    }

    .areaWelcome {
        width: 90%;
        padding-top: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    #stage_1 {
        margin-top: 15%;
    }

    #stage_2 {
        margin-top: 15%;
    }

    #stage_3 {
        margin-top: 15%;
    }

    .splitLineV {
        width: 80%;
        height: 2px;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }

    .areaTwoButton {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        height: 150px;
    }

    .areaTwoButton2 {
        display: flex;
        width: 90%;
        justify-content: space-between;
    }

    .buttonBlack {
        width: 130px;
        height: 46px;
    }

    .buttonBlackTwo {
        margin-top: 0;
    }

    .codeChangePass {
        width: 20px;
        height: 40px;
        font-size: 18px;
        text-align: center;
        border-radius: 4px;
        border: 1px solid var(--border-color);
        align-items: center;
        display: flex;
    }
}

.agreementAreaCheckBox {
    display: block;
}

.agreementArea {
    flex-direction: column;
}

.agreementArea2 {
    flex-direction: column;
}

.agreementArea3 {
    margin-top: 10px;
}

.animateClickElement {
    animation: onShowLabel 0.2s ease forwards;
}

.animaElemHide {
    animation: hideElem 0.2s ease forwards;
}

/*  anim */
@keyframes showElem {
    0% {
        scale: 0;
    }

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}

@keyframes hideElem {
    0% {
        opacity: 1;
        scale: 1;
    }

    100% {
        opacity: 0;
        scale: 0;
    }
}

@keyframes onShowLabel {
    0% {
        scale: 0.9;
    }

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}


@keyframes showElemOpacity {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes showStartDiv {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes lab_header_active_Show {
    0% {
        margin-top: +50px;
        opacity: 0;
    }

    50% {
        margin-top: -56px;
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        margin-top: -36px;
    }
}