﻿/* ============================
   REGRAS GLOBAIS (APLICADAS NO MOBILE)
   ============================ */

/* Reset e configurações iniciais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*------------------------
Fontes Personalizadas
------------------------*/

/* Rajdhani Regular */
@font-face {
    font-family: 'Rajdhani';
    src: url('https://assets.vrfai.app/lib/Rajdhani/Rajdhani-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Rajdhani Bold */
@font-face {
    font-family: 'Rajdhani';
    src: url('https://assets.vrfai.app/lib/Rajdhani/Rajdhani-Bold.ttf') format('truetype');
    font-weight: bold;
    font-display: swap;
    font-style: normal;
    font-display: swap;
}

/* Rajdhani Light */
@font-face {
    font-family: 'Rajdhani';
    src: url('https://assets.vrfai.app/lib/Rajdhani/Rajdhani-Light.ttf') format('truetype');
    font-weight: 300;
    /* Valor numérico para "light" */
    font-display: swap;
    font-style: normal;
    font-display: swap;
}

/* Rajdhani Medium */
@font-face {
    font-family: 'Rajdhani';
    src: url('https://assets.vrfai.app/lib/Rajdhani/Rajdhani-Medium.ttf') format('truetype');
    font-weight: 500;
    /* Valor numérico para "medium" */
    font-display: swap;
    font-style: normal;
    font-display: swap;
}

/* Rajdhani SemiBold */
@font-face {
    font-family: 'Rajdhani';
    src: url('https://assets.vrfai.app/lib/Rajdhani/Rajdhani-SemiBold.ttf') format('truetype');
    font-weight: 600;
    /* Valor numérico para "semibold" */
    font-display: swap;
    font-style: normal;
    font-display: swap;
}

html,
body {
    overflow: hidden;
    min-height: 100vh;
    /* Fallback */
    max-height: 100vh;
    /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
    max-height: calc(var(--vh, 1vh) * 100);
    font-size: 16px;
}

body {
    width: 100vw;
    font-family: Rajdhani, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

input,
textarea,
button,
select {
    font-family: 'Rajdhani', system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

button {
    outline: none !important;
    border: none;
    background: 0 0;
}


form {
    padding: 0 1.5rem;
    justify-content: center;
    overflow: hidden;
}

/*-----------------------------------
Loader
------------------------------------*/

.text-center {
    text-align: center;
}

.align-items-center {
    align-items: center;
}

.loader_wrapper {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 999999;
    background: rgba(37, 45, 71, 0.92);
    display: flex;
    left: 0;
    top: 0;
    right: 0;
    -webkit-user-select: none;
    -ms-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: not-allowed;
}


/*-----------------------------------
Landscape warning
------------------------------------*/

.landscape-warning {
    display: none;
}

/*-----------------------------------
Container
------------------------------------*/

.container {
    height: 100vh;
    padding: 0px;
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    width: 100vw;
    border: none;
    overflow: hidden;
    background: var(--login-form-background);
    transition: var(--form-transition-to-recovery-mode);
}

.container:before {
    position: absolute;
    bottom: 71vh;
    width: 1500px;
    height: 1500px;
    transform: translateX(-50%);
    transition: var(--panel-transition-to-recovery-mode);
    left: 50%;
    content: "";
    background: var(--login-panel-background);
    border-radius: 50%;
    z-index: 2;
}

.container.recovery-mode {
    background: var(--recovery-form-background);
    transition: var(--form-transition-to-login-mode);
}

.container.recovery-mode:before {
    transform: translate(-50%, 102%);
    bottom: 38vh;
    left: 50%;
    background: var(--recovery-panel-background);
    transition: var(--panel-transition-to-login-mode);
}

.login-left-image,
.recovery-left-image,
.login-right-image,
.recovery-right-image,
.login-bottom-left-image,
.recovery-bottom-left-image {
    display: none;
}

#lnk-help {
    display: none;
}

#login-form {
    position: absolute;
    top: 27vh;
    bottom: 5vh;
    width: 100%;
    transition: opacity 0.8s ease-in-out 0s, visibility 0.8s ease-in-out 0s, transform 0.8s ease-in-out 0s;
    align-items: center;
    opacity: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    z-index: 1;
}

#login-form img {
    width: var(--mobile-login-form-image-width);
    margin-bottom: var(--login-form-image-margin-bottom);
}

.container.recovery-mode #login-form {
    opacity: 0;
    z-index: 0;
    transform: translateX(800px);
}

.form-title {
    font-size: 1.9rem;
    color: var(--mobile-login-form-title-color);
}

.form-title .purple {
    color: #6808A9;
}

.form-title .blue {
    color: #01BAEF;
}

.form-title .yellow {
    color: #F9D423;
}

.input-field {
    width: 85%;
    background-color: #f0f0f0;
    margin: 5px 0;
    height: 44px;
    border-radius: var(--input-field-border-radius);
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 0.4rem;
    border: var(--input-field-border);
    position: relative;
}

.input-field i {
    line-height: 44px;
    font-size: 1rem;
    text-align: center;
    width: 44px;
    color: #acacac;
    transition: 0.5s;
}

.input-field .eye-component {
    position: absolute;
    right: 0px;
}

.input-field input {
    font-size: 1rem;
    line-height: 1;
    background: none;
    outline: none;
    border: none;
    font-weight: 600;
    color: #333;
}

.input-field input::placeholder {
    color: #aaa;
    font-weight: 500;
}

.form-button-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 13px;
    width: 85%;
}

.form-button-wrapper {
    display: block;
    width: 100%;
    border-radius: 0.25rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.form-button-background {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: var(--login-form-button-background);
    left: -100%;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
}

.form-button-wrapper:hover .form-button-background {
    background: var(--login-form-button-hover-background);
    left: 0;
}

.container.recovery-mode .form-button-background {
    background: var(--recovery-form-button-background);
}

.container.recovery-mode .form-button-wrapper:hover .form-button-background {
    background: var(--recovery-form-button-hover-background);
    left: 0;
}

.form-button {
    padding-top: 1vh;
    padding-bottom: 1vh;
    max-width: 380px;
    width: 100%;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 44px;
    cursor: pointer;
}

.link {
    font-weight: bold;
    text-decoration: none;
    color: var(--login-link-color);
}

.container.recovery-mode .link {
    color: var(--recovery-link-color);
}

#lnk-forgot-password {
    padding-top: 3vw;
    font-size: 1rem;
}

.recovery-form {
    position: absolute;
    align-items: center;
    opacity: 0;
    z-index: 0;
    transition: all 0.7s ease-in-out 0.3s;
    flex-direction: column;
    text-align: center;
    top: 2vh;
    width: 100%;
    height: 62vh;
    align-self: center;
}

.recovery-form img {
    width: var(--mobile-recovery-form-image-width);
}

.recovery-form .form-title {
    margin-bottom: 0.2vh;
    margin-top: 0.2vh;
    font-size: 1.6rem;
    color: var(--mobile-recovery-form-title-color);
}

.recovery-form h3 {
    font-size: 1.0rem;
    color: var(--mobile-recovery-form-secondary-title-color);
}

.recovery-form h4 {
    margin-top: 1vh;
    margin-bottom: 1vh;
    text-align: center;
    color: var(--mobile-recovery-form-text-color);
    font-size: 0.85rem;
}

.container.recovery-mode.user-request-step #forgot-password,
.container.recovery-mode.token-request-step #token-request,
.container.recovery-mode.new-password-request-step #change-password {
    opacity: 1;
    z-index: 1;
}

.container.recovery-mode.user-request-step #token-request-step,
.container.recovery-mode.user-request-step #change-password,
.container.recovery-mode.token-request-step #forgot-password,
.container.recovery-mode.token-request-step #change-password,
.container.recovery-mode.new-password-request-step #forgot-password,
.container.recovery-mode.new-password-request-step #token-request-step {
    opacity: 0;
    z-index: 0;
}


#pinInput .form-group {
    min-width: 300px;
    width: 50%;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
}

#pinInput .letter {
    height: 43px;
    border-radius: 0;
    text-align: center;
    width: 43px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(100% / 10);
    outline-style: none;
    font-size: 1.4rem;
    font-weight: bold;
    border: 1px solid rgba(96, 100, 104, 0.3);
    margin-left: 5px;
}

#passwordTips {
    text-align: left;
    color: var(--mobile-recovery-form-text-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.dimetrika-rights {
    display: none;
}

.social-icons {
    justify-content: space-around;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}

.social-icon {
    margin: 0;
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--social-icon-border-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
    color: var(--social-icon-color);
}

.social-icon:hover {
    color: var(--social-icon-hover-color);
    border: 1px solid var(--social-icon-border-hover-color);
}

.dimetrika-powered-by {
    display: none;
}

.panel {
    align-items: center;
    text-align: center;
    width: 100%;
    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 2vh;
    padding-bottom: 0vh;
    position: absolute;
}

.panel h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--login-panel-title-color);
    transition: all 1.5s ease-in-out;
}

.panel p {
    font-size: 0.9rem;
    padding: 1vh 0;
    color: var(--login-panel-text-color);
    transition: all 1.5s ease-in-out;
}

.panel .content,
.panel .content-password-change {
    color: #fff;
    align-self: center;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.6s;
    margin-top: 5px;
    width: 100%;
}

.panel .content {
    padding: 0.0rem 0rem;
    transition-delay: 0.8s;
    margin-top: 0px;
    width: 100%;
    font-weight: bold;
}


.login-panel {
    height: 28vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0px;
    top: 0px;
    z-index: 3;
    transition: opacity 1.6s ease-in-out 0s, visibility 1.6s ease-in-out 0s;
}

.container.recovery-mode .login-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.recovery-panel {
    display: flex;
    bottom: -1000px;
    flex-direction: column-reverse;
    transition: all 0.9s ease-in-out;
    transition-delay: 0.6s;
    transform: translateY(-50%);
    justify-content: center;
    height: 31vh;
    z-index: 3;
}

.recovery-panel #recovery-panel-image {
    display: none;
}

.container.recovery-mode .panel h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--recovery-panel-title-color);
}

.container.recovery-mode .panel p {
    font-size: 0.9rem;
    padding: 1vh 0;
    color: var(--recovery-panel-text-color);

}

.container:not(.change-password-origin) .recovery-panel .content {
    display: inline;
}

.container:not(.change-password-origin) .recovery-panel .content-password-change {
    display: none;
}

.container.recovery-mode.change-password-origin .recovery-panel .content {
    display: none;
}

.container.recovery-mode.change-password-origin .recovery-panel .content-password-change {
    display: inline;
}

#login-panel-first-image {
    width: var(--mobile-login-panel-first-image-width);
    transition: transform 1.1s ease-in-out;
    transition-delay: 0.4s;
    align-self: center;
    margin-top: 1vh;
}

#login-panel-second-image {
    display: none;
}

/* Removido - conflito com definição principal do toggle */

.secondary-button {
    color: #3d3d3d;
    border-radius: 0.25rem;
    border-color: #3d3d3d;
    border-style: solid;
    border-width: 1px;
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: var(--login-secondary-button-background);
}

.container.recovery-mode .secondary-button {
    background-color: var(--recovery-secondary-button-background);
}

#btn-register,
#install-app {
    display: inline;
    position: absolute;
    transform: translateX(150%);
    top: 20px;
    right: 20px;
    transition: all 0.7s ease-in-out 0.3s;
    z-index: 3;
}

.container.recovery-mode #btn-register,
.container.recovery-mode #install-app {
    transform: translateX(0%);
}

.container.recovery-mode .login-panel #login-panel-first-image,
.container.recovery-mode .login-panel #login-panel-second-image,
.container.recovery-mode .login-panel .content {
    transform: translateY(-800px);
}

.container.recovery-mode .recovery-panel {
    bottom: var(--small-mobile-recovery-panel-bottom);
    transform: translateY(-50%);
    transition: all 0.9s ease-in-out;
    transition-delay: 0.6s;
}

.container.recovery-mode.form-title {
    font-size: 1.9rem;
    color: var(--mobile-recovery-form-title-color);
}

#login-form-background-video {
    visibility: visible;
    transition: visibility 0.9s linear 1s;
    position: absolute;
    display: var(--small-mobile-login-form-video-display);
    width: var(--small-mobile-login-form-video-width);
    transform: var(--small-mobile-login-form-video-transform);
}

.container.recovery-mode #login-form-background-video {
    visibility: hidden;
    transition: visibility 0.9s linear 0s;
}

#recovery-form-background-video {
    visibility: hidden;
    transition: visibility 0.9s linear 0s;
}

.container.recovery-mode #recovery-form-background-video {
    visibility: visible;
    transition: visibility 0.9s linear 1.1s;
    position: absolute;
    display: var(--small-mobile-recovery-form-video-display);
    width: var(--small-mobile-recovery-form-video-width);
    transform: var(--small-mobile-recovery-form-video-transform);
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {}

.valid:before {
    position: relative;
    /*left: -15px;*/
    content: "✔";
    margin-right: 5px;
    color: green;
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {}

.invalid:before {
    position: relative;
    /*left: -15px;*/
    content: "✖";
    margin-right: 5px;
    color: red;
}

#passwordTips p {
    line-height: 1.6em;
}

.slider-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(https://assets.vrfai.app/images/curtains.png);
    z-index: 1;
    display: var(--login-form-overlay);
}

.container.recovery-mode .slider-background {
    display: var(--recovery-form-overlay);
}

/* ============================
   TOGGLE LOGIN OFFLINE
   ============================ */

/* Toggle Login Offline - Mobile First */
#offline-toggle-container {
    position: fixed;
    top: 12px;
    right: 30px;
    z-index: 9999;
    display: block;
    /* Visível por padrão no mobile */
    width: 50px;
    /* Largura fixa para o toggle */
    height: 25px;
    /* Altura fixa para o toggle */
    visibility: visible;
    opacity: 1;
    transition: transform 2s ease;
    transform: translateY(0);
}

.container.recovery-mode #offline-toggle-container {
    transform: translateY(-100vh) !important;
}

/* Estilos do toggle */
.can-toggle {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    user-select: none;
}

.can-toggle input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.can-toggle label {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Rajdhani', Arial, sans-serif;
    font-weight: 500;
    color: #c8d4f9;
}

/* Remover estilos do label-text que não existe no HTML do projeto */
.can-toggle label .can-toggle__label-text {
    display: none;
}

/* Remover estilos conflitantes dos pseudo-elementos do label */
.can-toggle label:before,
.can-toggle label:after {
    display: none;
}

/* Estilos para exibir os labels On/Off no toggle */
.can-toggle label .can-toggle__switch {
    position: relative;
    height: 35px;
    width: 70px;
    background: #ff4444;
    border-radius: 35px;
    transition: background-color 0.3s ease;
    display: block;
}

.can-toggle label .can-toggle__switch:before {
    content: attr(data-checked);
    position: absolute;
    top: 0;
    left: 35px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.can-toggle label .can-toggle__switch:after {
    content: attr(data-unchecked);
    position: absolute;
    top: 2px;
    left: 2px;
    width: 31px;
    height: 31px;
    background: #ffffff;
    border-radius: 50%;
    line-height: 31px;
    text-align: center;
    font-size: 8px;
    font-weight: bold;
    color: #ff4444;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 5;
}

.can-toggle input[type="checkbox"]:checked~label .can-toggle__switch {
    background: #44ff44;
}

.can-toggle input[type="checkbox"]:checked~label .can-toggle__switch:before {
    content: attr(data-unchecked);
    left: 0;
    color: rgba(0, 0, 0, 0.6);
}

.can-toggle input[type="checkbox"]:checked~label .can-toggle__switch:after {
    content: attr(data-checked);
    transform: translateX(33px);
    color: #44ff44;
}

/* Estilos específicos para demo-rebrand-2 small */
.can-toggle.demo-rebrand-2.small label .can-toggle__switch {
    height: 35px;
    width: 70px;
    border-radius: 35px;
}

.can-toggle.demo-rebrand-2.small label .can-toggle__switch:before {
    left: 35px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 10px;
}

.can-toggle.demo-rebrand-2.small label .can-toggle__switch:after {
    width: 31px;
    height: 31px;
    line-height: 31px;
    font-size: 8px;
    border-radius: 50%;
}

.can-toggle.demo-rebrand-2.small input[type="checkbox"]:checked~label .can-toggle__switch:after {
    transform: translateX(33px);
}

/* 📌 Smartphones médios (ex: iPhone 7, iPhone 12 Pro) - Portrait */
@media (min-height: 680px) and (orientation: portrait),
(orientation: landscape) {

    html,
    body {
        font-size: 18px;
    }

    .container.recovery-mode:before {
        bottom: 31vh;
    }

    #login-panel-second-image {
        display: block;
        width: var(--mobile-login-panel-second-image-width);
        transition: transform 1.1s ease-in-out 0.4s;
    }

    .dimetrika-rights {
        position: absolute;
        display: block;
        bottom: 10vh;
        width: 50%;
        transform: translateX(50%);
        transition: all 1.8s ease-in-out 0s, opacity 2s ease-in-out 0.5s;
        z-index: 1;
    }

    .container.recovery-mode .dimetrika-rights {
        opacity: 0;
        transform: translate(50%, 300%);
        transition: transform 0.5s ease-in-out 0s, opacity 0.5s ease-in-out 0s;
    }

    .recovery-panel #recovery-panel-image {
        display: var(--mobile-recovery-panel-image-display);
        width: var(--mobile-recovery-panel-image-width);
    }

    .container.recovery-mode .recovery-panel {
        bottom: var(--medium-mobile-recovery-panel-bottom);
    }

    .recovery-form {}

    .recovery-form img {
        width: var(--mobile-recovery-form-image-width);
    }

    #login-form-background-video {
        display: var(--medium-mobile-login-form-video-display);
        width: var(--medium-mobile-login-form-video-width);
        transform: var(--medium-mobile-login-form-video-transform);
    }

    .container.recovery-mode #recovery-form-background-video {
        display: var(--medium-mobile-recovery-form-video-display);
        width: var(--medium-mobile-recovery-form-video-width);
        transform: var(--medium-mobile-recovery-form-video-transform);
    }

}

/* 📌 Mobile (Largura abaixo de 1023px landscape) */
@media (max-width: 1023px) and (orientation: landscape) {
    .landscape-warning {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centraliza horizontalmente */
        align-items: center;
        /* Centraliza verticalmente */
        width: 100vw;
        /* 100% da largura da viewport */
        height: 100vh;
        /* 100% da altura da viewport */
    }

    .landscape-warning img {
        width: 15%;
    }

    .container {
        display: none;
    }
}

/* 📌 Desktop (Largura acima de 1024px) */
@media (min-width: 1024px) and (orientation: landscape) {

    html,
    body {
        font-size: 17px;
    }

    .container:before {
        top: -10%;
        right: 48%;
        bottom: unset;
        height: 2000px;
        width: 2000px;
        transform: translateY(-50%);
        left: unset;
    }

    .container.recovery-mode:before {
        transform: translate(100%, -50%);
        right: 52%;
        bottom: unset;
        left: unset;
    }

    .login-left-image,
    .recovery-left-image,
    .login-right-image,
    .recovery-right-image,
    .login-bottom-left-image,
    .recovery-bottom-left-image {
        display: block;
        position: absolute;
    }

    .login-left-image,
    .recovery-left-image {
        transition: opacity 1.6s ease-in-out 0s;
        top: 20%;
        left: 15px;
        position: absolute;
        z-index: 2;
    }

    .login-left-image {
        opacity: 1;
    }

    .container.recovery-mode .login-left-image {
        opacity: 0;
    }

    .recovery-left-image {
        opacity: 0;
    }

    .container.recovery-mode .recovery-left-image {
        opacity: 1;
    }

    .login-right-image,
    .recovery-right-image {
        transition: opacity 1.6s ease-in-out;
        transition-delay: 0.0s;
        top: 14%;
        right: 15px;
        height: 55%;
        z-index: 3;
    }

    .login-right-image {
        opacity: 1;
    }

    .container.recovery-mode .login-right-image {
        opacity: 0;
    }

    .recovery-right-image {
        opacity: 0;
    }

    .container.recovery-mode .recovery-right-image {
        opacity: 1;
    }

    .login-bottom-left-image,
    .recovery-bottom-left-image {
        position: absolute;
        bottom: 20px;
        left: 15px;
        transition: opacity 1.6s ease-in-out;
        transition-delay: 0.0s;
    }

    .login-bottom-left-image {
        opacity: 1;
        z-index: 2;
    }

    .container.recovery-mode .login-bottom-left-image {
        opacity: 0;
    }

    .recovery-bottom-left-image {
        opacity: 0;
    }

    .container.recovery-mode .recovery-bottom-left-image {
        opacity: 1;
    }

    #login-form {
        top: 9%;
        bottom: unset;
        left: 50%;
        width: 50%;
        padding: 0px 13vw;
        height: 77vh;
        transition: opacity 0.8s ease-in-out 0.2s, visibility 0.8s ease-in-out 0.2s, transform 0.8s ease-in-out 0s;
        z-index: 1;
    }

    #login-form img {
        width: var(--login-form-image-width);
    }

    .container.recovery-mode #login-form {
        transform: translateX(-70%);
    }

    .recovery-form {
        top: 0vh;
        width: 50vw;
        left: 0vh;
        height: 100%;
        padding: 0px 12vw;
        transition: opacity 0.8s ease-in-out 0.2s, visibility 0.8s ease-in-out 0.2s, transform 0.8s ease-in-out 0s;
        transform: translateX(75%);
    }

    .container.recovery-mode .recovery-form {
        transform: translateX(0%);
    }


    .panel {
        justify-content: space-around;
    }

    .panel .content {
        padding: 0px 4vw;
    }

    .panel h3 {
        font-size: 1.8rem;
    }

    .panel p {
        font-size: 1rem;
        font-weight: 400;
        padding: 1rem;
    }

    .login-panel {
        height: 92%;
        margin-bottom: unset;
        top: 0px;
        width: 50%;
        padding: 0px;
    }

    .recovery-panel {
        bottom: unset;
        flex-direction: var(--recovery-panel-flex-direction-on-desktop);
        justify-content: center;
        height: 31vh;
        left: 50%;
        width: 50%;
        top: 50%;
        transform: translate(1800px, -50%);
    }

    .form-title {
        color: var(--login-form-title-color);
    }

    .recovery-form img {
        width: var(--recovery-form-image-width);
    }

    .recovery-form .form-title {
        color: var(--recovery-form-title-color);
    }

    .recovery-form h3 {
        font-size: 1.2rem;
        color: var(--recovery-form-secondary-title-color);
    }

    .recovery-form h4 {
        margin-top: 1vh;
        margin-bottom: 1vh;
        text-align: center;
        color: var(--recovery-form-text-color);
        font-size: 0.9rem;
    }

    #passwordTips {
        color: var(--recovery-form-text-color);
    }

    #login-panel-first-image {
        width: var(--login-panel-first-image-width);
    }

    .container.recovery-mode.form-title {
        color: var(--recovery-form-title-color);
    }

    #login-panel-second-image {
        width: var(--login-panel-second-image-width);
    }

    .recovery-panel #recovery-panel-image {
        display: block;
        margin-top: var(--recovery-panel-image-margin-top);
        margin-bottom: var(--recovery-panel-image-margin-bottom);
        width: var(--recovery-panel-image-width);
    }

    .recovery-form img {
        width: var(--recovery-form-image-width);
    }

    #lnk-forgot-password {
        padding-top: 1vw;
    }

    .input-field {
        margin: 10px 0;
    }

    .dimetrika-rights {
        z-index: 2;
        left: 50%;
        width: 50%;
        bottom: 20px;
        transform: unset;
    }

    .container.recovery-mode .dimetrika-rights {
        transform: translateY(50%);
    }


    .social-icons {
        padding: 0px 17vw;
    }

    .dimetrika-powered-by {
        display: block;
        color: var(--login-link-color);
        font-weight: 700;
        font-size: 0.95rem;
    }

    #lnk-help,
    #btn-register,
    #install-app {
        position: absolute;
        display: inline;
        top: 20px;
        padding: 0.5rem 1rem;
        z-index: 3;
    }

    #btn-register,
    #back-to-login,
    #install-app {
        color: #3d3d3d;
        border-radius: 0.25rem;
        border-color: #3d3d3d;
        border-style: solid;
        border-width: 1px;
        transform: unset;
    }

    #btn-register,
    #install-app {
        right: 20px;
    }

    #lnk-help {
        right: 140px;
        transition: all 0.6s ease-in-out 0.7s;
    }

    .container.recovery-mode .login-panel #login-panel-first-image,
    .container.recovery-mode .login-panel #login-panel-second-image,
    .container.recovery-mode .login-panel .content {
        transform: translateX(-800px);
    }

    #login-form-background-video {
        width: 100%;
    }

    .container.recovery-mode #recovery-form-background-video {
        width: 100%;
        transform: var(--recovery-form-video-transform);
    }

    #offline-toggle-container {
        visibility: hidden;
    }
}

@media (min-width: 1530px) and (orientation: landscape) {
    .container:before {
        top: -10%;
        right: 48%;
        bottom: unset;
        height: 2000px;
        width: 2000px;
        transform: translateY(-50%);
        left: unset;
    }
}