@font-face {
    font-family: "Lama";
    src: url("/fonts/Lama_Sans/LamaSans-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    ascent-override: 90%;
}


@font-face {
    font-family: "Lama";
    src: url("/fonts/Lama_Sans/LamaSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    ascent-override: 90%;
}

@font-face {
    font-family: "Lama";
    src: url("/fonts/Lama_Sans/LamaSans-Regular.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    ascent-override: 90%;
}

@font-face {
    font-family: "Lama";
    src: url("/fonts/Lama_Sans/LamaSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    ascent-override: 90%;
}

@font-face {
    font-family: "Lama";
    src: url("/fonts/Lama_Sans/LamaSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    ascent-override: 90%;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Lama";
}

* {
    font-family: "Lama";
    font-weight: 500;
}

.main-content {
    min-height: 100vh;
}

.left-half {
    position: relative;
    flex: 1;
    background-color: white;
    background: linear-gradient(180deg, #FFF 60%, #F2F7FF 100%);
    min-height: 100vh;
}

.bg-container {
    flex: 1;
    background-image: url('/images/iso-login-bg-en.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

html:dir(rtl) .bg-container {
    background-image: url('/images/iso-login-bg-ar.svg');
}

.logo {
    margin: 1rem 0 3rem 0;
}

.logo .text {
    font-size: 4rem;
    font-weight: 500;
    margin-top: 1rem;
}

.logo img {
/*    width: 6rem;*/
    height: 6rem;
}


.login-form .field-container:first-of-type {
    margin: 1.5rem 0px;
}

.login-form .field-container .field-label {
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}

.login-form h2 {
    margin-bottom: 40px;
    font-size: 21px;
    font-weight: 500;

}

.login-form input {
    border-radius: 4px;
    border: 1px solid var(--Secondary-Secondary300, #CED7DE);
    color: var(--Secondary-Secondary800, #637D92);
    font-size: 14px;
    background: #FFF;
    width: 350px;
    padding: 17px 12px 17px 12px;
    outline: none;
}

.login-form button {
    width: 100%;
    border: none;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 1rem;
    background: var(--Primary-Primary, #0056D6);
}

.login-form button:hover {
    background-color: #0056b3;
}

@media only screen and (max-width: 650px) {
    .bg-container {
        display: none;
    }
}

.forget-password-row a {
    color: var(--Primary-Primary, #0056D6);
    font-size: 12px;
}

.forget-password-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    padding: 1rem 0rem;
    color: var(--Base-Base-Black, #0A0A0B);
}

.checkbox .text {
    text-decoration-line: underline;
    margin: 0rem .4rem;
}

.checkbox input {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox:hover input~.checkmark {
    background-color: #ccc;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked~.checkmark:after {
    display: block;
}

.checkbox .checkmark {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: inline-block;
    border-radius: var(--Radius-xxs, 2px);
    border: 1px solid #CED7DE;
    background: #FFF;
}

.checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    background-color: red;
    height: 10px;
    border: solid #0056D6;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.copyright-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    color: #0A1C42
}

.account-module-form {
    width: 60%;
}

    .account-module-form h3 {
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px; /* 133.333% */
    }

    .account-module-form h5 {
        color: #384250;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px; /* 150% */
    }

    .account-module-form button[type="submit"] {
        background-color: #28A89B;
        border-color: #28A89B;
    }

    .account-module-form a {
        color: #28A89B;
    }

.bi-capslock {
    position: relative;
    top: -32px;
    right: 75%;
}

input[type="password"]::-ms-reveal {
    display: none;
}


.display-password, .hide-password,
.display-confirm-password, .hide-confirm-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    cursor: pointer;
}

html:dir(rtl) .display-password, html:dir(rtl) .hide-password,
html:dir(rtl) .display-confirm-password, html:dir(rtl) .hide-confirm-password {
    right: unset;
    left: 10px;
}

a.forgot-password {
    min-height: 44px;
}

.auth-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    gap: 1rem;
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 1rem;
    border: 1.5px solid #28A89B;
    border-radius: 999px;
    color: #28A89B;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 86, 214, 0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.lang-switch-btn i {
    font-size: 15px;
}

    .lang-switch-btn:hover {
        background: #28A89B;
        color: #fff;
        box-shadow: 0 4px 16px rgba(0, 86, 214, 0.20);
    }