.container-login {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: var(--light-gray);
    padding: 40px;
}

.main-login {
    max-width: 690px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white-font-color);
    border-radius: var(--border-radius);
    padding: 40px;
    gap: 20px;
}

.login_title {
    color: black;
}

.login_with-2kb-id {
    height: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.login_with-2kb-id h3 {
    color: var(--black-font-color);
}

.login_with-2kb-id img {
    height: 100%;
    object-fit: contain;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 690px;
    width: 100%;
    position: relative;

}

.pin {
    display: none;
}

.login_block {
    display: flex;
    gap: 20px;
    width: 100%;
}

.login_block-inputs {
    /* max-width: 470px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login_block-inputs  input {
    width: 100%;
    height: 40px;
    padding: 7px 15px;
    border-radius: var(--border-radius);
    border: var(--border);
    font-size: 16px;
    background-color: #f3f3f3;
    transition: background-color .3s linear;
    margin-bottom: 0 !important;
}

.login_block-inputs  input::placeholder {
    color: #998479;
    color: var(--span-font-color);
    font-size: 16px !important;
}

.mail_pass, .pin {
    position: relative;
}

span.clean-input {
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background: var(--inactive-link-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;

    transition: var(--transition-anim);
}

span.clean-input.hidden {
    opacity: 0;
}

.tegP {
    color: #CECCCB;
    font-size: .9em;
    display: none;
}

.tegP.showP {
    display: block;
}

.mail {

    display: flex;
    align-items: flex-end;
    margin-left: 80px;
    width: 650px;
}

.mail input {
    width: 447px;
    padding: 10px 12px;
    border: 2px solid rgb(93, 86, 86);
    border-radius: 8px;
    background: rgba(0, 0, 0, .4);
    outline: none;
    color: white;
    font-size: 1.0em;
}

button#login_button {
    align-self: center;
    font-size: 16px;
    padding: 10px 15px;
    color: #F1EEEA;
    background-color: var(--span-font-color);
    border: none !important;
    font-family: 'Geologica', sans-serif !important;
    border-radius: var(--border-radius);
    width: 200px;
    cursor: pointer;
    pointer-events: auto;
    display: none;
}

button#login_button:hover, button#login_button:active {
    background-color: var(--category);
}

button#login_button.active {
    display: block;
}

.soc_login {
    max-width: 370px;
    width: 100%;
    height: 100%;
    text-align: center;
    margin-top: 20px;
}

.soc_login h3 {
    color: var(--black-font-color);
}

.soc_block {

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.soc_login a:active {
    filter: brightness(80%);
}

.fb, .tw, .gg, .vk {
    width: 70px;
    cursor: pointer;
}

.fb img {
    width: 100%;
}

.tw img {
    width: 100%;
}

.gg img {
    width: 100%;
}

.vk img {
    width: 100%;
}

h3 {
    color: #D5D4D3;
    font-size: 16px;
    padding: 7px;
}

.qr-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.qr-desc {
    font-size: .9em;
    text-align: center;
    color: #CECCCB;
}

/* MEDIA QUERIES */
@media screen and (max-width: 500px) and (orientation: portrait) {
    .container-login {
        padding: 0 0 40px 0;
    }

    .main-login {
        width: 100%;
        height: 100vh;
        padding: 20px;
    }

    .login_block {
        flex-direction: column;
    }

    .tegP {
        text-align: justify;
    }
}

@media screen and (max-width: 768px) {
    .login_block {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 932px) and (max-height: 430px) {
    .container-login {
        height: 100% !important;
        padding-top: 0;
    }
}

@media screen and (max-width: 1366px) and (orientation: landscape) {
    .container-login {
        height: 100vh;
        flex: none;
    }

    .login_with-2kb-id, .soc_login {
        margin-top: 0;
    }
}