/* hide navigation */

.page-authentication .af-view__nav {

    display: none !important;

}



/* Remove default styles */

#authentication,

#authentication #inner-wrapper,

#authentication .af-card,

#authentication .af-card-body {

    padding: 0;

    margin: 0;

    border: 0;

    border-radius: 0;

    background-color: transparent;

}



/* outside containers */

#authentication .afb2b-login-wrapper {

    margin: 0;

    padding: 0;

    width: 100vw;

    height: 100vh;

    overflow: hidden;

}



#authentication .outside-container {

    display: flex;

    width: 100%;

    height: 100%;

}



#authentication .left-container,

#authentication .right-container {

    flex: 1;

    height: 100%;

}



/* languages */

.language-selector {

    position: absolute;

    top: 20px;

    right: 20px;

    display: flex;

    /* flex-direction: row-reverse; */

    z-index: 10;

}



.language-selector a {

    text-transform: uppercase;

    text-decoration: none;

    font-weight: 600;

    color: #333;

    font-size: 12px;

}



.language-selector a.active {

    color: #A38D6A;

}



.language-selector a:not(:last-child)::after {

    content: '|';

    padding-right: 4px;

    color: #000;

}



/* left container */

.left-container {

    width: 50%;

    height: 100vh;

    background-position: center center;

    background-repeat: no-repeat;

    background-size: cover;

}



/* right container */

#authentication .right-container {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background: white;

    position: relative;

    gap: 30px;

    padding: 30px;

}



/* logo */

.shop-logo {

    margin-bottom: 10px;

}



/* login form */

#authentication .forgot-password {

    text-align: center;

    font-size: 12px;

}



#authentication .no-account {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

}



#authentication .no-account-link {

    font-size: 14px;

    line-height: 20px;

    font-weight: 300;

    color: #0083d4;

    letter-spacing: .04em;

    margin-top: 10px;

}



#authentication .login-form {

    min-width: 400px;

}



/* media queries */



/* ---- BELOW 1200px ---- */

@media (max-width: 1199px) {

    #authentication .outside-container {

        flex-direction: column;

        position: relative;

    }



    #authentication .left-container {

        display: block;

        position: absolute;

        top: 0;

        left: 0;

        width: 100%;

        height: 100%;

        background-position: center center;

        background-repeat: no-repeat;

        background-size: cover;

        z-index: 0;

    }



    #authentication .right-container {

        width: 90%;

        max-width: 500px;

        margin: 0 auto;

        background: white;

        padding: 2rem;

        z-index: 1;

        border-radius: 12px;

        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);

        position: relative;

        top: 10vh;

        max-height: fit-content;

    }

}



/* ---- BELOW 760px ---- */

@media (max-width: 759px) {

    #authentication .left-container {

        display: none;

    }



    #authentication .right-container {

        width: 95%;

        padding: 1.5rem;

        box-shadow: none;

        border-radius: 0;

        top: 5vh;

    }

}