/* === CSS RESET === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Remove default body styles */
html, body {
    height: 100%;
    width: 100%;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: sans-serif;
}

/* Reset images, videos, and media elements */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Reset form elements */
input, button, textarea, select {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

/* Reset anchor tags */
a {
    color: inherit;
    text-decoration: none;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Make buttons clickable with pointer cursor */
button {
    cursor: pointer;
}

/* Ensure headings don’t have default margins */
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    font-weight: normal;
}

/* Set root box sizing for consistency */
:root {
    box-sizing: border-box;
}

/* Optional — prevent layout shift on mobile 100vh */
@supports (-webkit-touch-callout: none) {
    body {
        height: -webkit-fill-available;
    }
}


.login_screen {
    display: flex;
    height: 100vh;
}

.form_wrapper {
    width: 50%;
    height: 100vh;
}

.login_img_wrapper {
    width: 50%;
    height: 100vh;
}

.login_img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.login_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.header_navigator_logo_img {
    width: 53px;
    height: 33px;
}

.login_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px;
    border-bottom: 1px solid var(--invert-component-tr-70, #00000012);
}

.language_switcher_container {
    position: relative;
}

.language_switcher_btn {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 118%;
    letter-spacing: 0%;

    text-transform: uppercase;
    cursor: pointer;
    color: var(--invert-component-tr-30, #000000C7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.login_footer_container {
    border-top: 1px solid var(--invert-component-tr-70, #00000012);
    padding: 24px 24px 64px 24px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #161616;
}

.login_form_container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mobile_menu_locale_dropdown_popup {
    display: flex;
    flex-direction: column;
    position: absolute;
    background: white;
    top: 0;
    transform: translateY(37%) translateX(-82%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.2);

    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.mobile_menu_locale_dropdown_popup.active {
    max-height: fit-content;
    opacity: 1;
    pointer-events: auto;
}

.mobile_menu_locale_dropdown_popup_list_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header_change_locale_dropdown_list_item_href {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 52px;
    cursor: pointer;

    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 118%;
    letter-spacing: 0%;
    color: #6B6B6B;
}

.header_change_locale_dropdown_list_item_href_active {
    color: #6B6B6B;
    background: #EEEEEE;
}

.header_change_locale_dropdown_list_item_href:hover {
    color: #6B6B6B;
    background: #EEEEEE;
}

.form_container {
    width: 100%;
    max-width: 521px;
    background: #FCFCFC;
    border-radius: 12px;
    box-shadow: -2px 4px 20.6px 0px #8E8D8D2E;

}

.form_container_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 12px 48px;
    border-bottom: 1px solid var(--invert-component-tr-70, #00000012);
    font-family: Poppins, serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 18px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--invert-component-tr-20, #000000E5);
}

.form_container_header h3{
    font-family: Poppins;
    font-weight: 400;
    font-style: Medium;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 18px;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.login_form {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.form_label {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 22px;
    letter-spacing: 0px;
    color: var(--invert-component-tr-30, #000000C7);
}

.form_input {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #000;
    padding: 16px 8px;
    border-radius: 8px;
    border: 1px solid var(--invert-component-tr-70, #00000012);
}

.form_group_btn {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.form_submit_btn {
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    background: #222222;
    border: 1px solid #393838;
    border-radius: 23px;
}

.form_footer_desc {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 118%;
    letter-spacing: 0%;
    color: #000000;
}

.form_footer_desc a{
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 118%;
    letter-spacing: 0%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: #000000;
}

.remember_me {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #000;
    padding: 16px 8px;
    border-radius: 8px;
}

@media (max-width: 1440px) {

}

@media (max-width: 1024px) {
    .login_img_wrapper {
        display: none;
    }

    .form_wrapper {
        width: 100%;
    }
}

@media (max-width: 769px) {

}

.error_message {
    font-size: 11px;
    color: red;
}