﻿body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif; /* Matching the standard web fonts used in their portal */
}

h2 {
    color: #333;
    font-weight: normal;
    margin: 0 0 25px 0;
    font-size: 1.4rem;
}

.bg-image {
    font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(rgba(0, 53, 106, 0.7), rgba(0, 53, 106, 0.7)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    text-align: center;
}

.logo-container {
    margin-bottom: 35px;
}

.logo-img {
    max-width: 280px;
    height: auto;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-sizing: border-box;
    font-size: 15px;
    color: #333;
}

    input[type="text"]:focus {
        outline: none;
        border-color: #005696;
        box-shadow: 0 0 4px rgba(0, 86, 150, 0.3);
    }

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #005696;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

    .btn-login:hover {
        background-color: #003d6b;
    }

.footer-links {
    margin-top: 25px;
    font-size: 13px;
    color: #666;
}

    .footer-links a {
        color: #005696;
        text-decoration: none;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.copyright {
    margin-top: 20px;
    font-size: 11px;
    color: #999;
}

.textus-linked:before {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAIcSURBVHgBtVO9bhNBEJ5Zn+/OUhTFUgQy4ecikICKRKJAosENggrcpATTUNBE7tLhNwDRpkDhDdzQ0iCQUgVZIFFxFKAgAV4ZJ/bd7e0yM3dnUYQqypxmd/Z2dubbb2YBjinIw1p/tGQb6aYJppvGnzbzMAFSR2vMA7KDGZiQlGYbJiMTpIPQz3p6tae9MtAzsK4LDulTQCMAq8XCphEsIIJyzuESWNs9ABPRRhtvbE2jNEi/GH9GWVkTycQqSIrsjmbM5/+LudYwq8pwJIvlbRRnkuycGcWW/Mhrxxb7OFYEYyBSAJ4cZoeVBQ8fXGvCYr0mQW6vLMPGuTN0FQWLyocnp6/iBW8BJSAHMp6cnt/zxf1lvHzKg1YT4OXnH7B984oQNHz3222cbeHj8xfh7qQFd74OCo4YsyCwAh0Hw0P4Njaw+30G4ySHT/oQ3v/U8FFP8PWvfTc80PD2z36RsgyA17eyWw7TN0IelS4vS1fYRBituYRSzpK8ikz0s7bC3GlkIEJcQZaIE2aE2H9Li5XynqHdLKvHNOnKGdjZqtKRflreIIsCVhVyUqFaHHrentp7jhrR9qRpckYAczTOlbkske5KNEXFNKGSTsSqp6mdI1u392w4aZogiUgf5kHVWFPmICY+dkxjNoLA7Oj1R3r+Fo6SS9sf+rmfPS2IS2LfjdfjTkcf+Zj+J9Gr3a71zZoKkn7caWs4CfkLe8Er0u7btY4AAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    content: "";
    display: inline-block;
    height: 16px;
    vertical-align: top;
    width: 20px;
    cursor: pointer
}

.textus-linked {
    cursor: pointer
}

span.textus-linked {
    min-width: 0 !important
}

body:has(#textus-tab.dragging) {
    cursor: grabbing;
    user-select: none;
}

#textus-tab {
    display: flex;
    flex-direction: row;
    top: 0;
    right: 0;
    position: fixed;
    border: none;
    z-index: 99999999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;

    &.loaded {
        opacity: 1;
        visibility: visible;
    }
}

    #textus-tab .textus-tab__dragger {
        display: flex;
        flex-direction: column;
        height: 40px;
        width: 9px;
        background-color: #596E8A;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        cursor: grab;
        border: none;
        position: relative;
        z-index: 2;
    }

        #textus-tab .textus-tab__dragger::before {
            content: '';
            position: absolute;
            top: 0;
            left: 100%;
            width: 50%;
            bottom: 0;
            background: transparent;
            cursor: grab;
            z-index: 1;
        }

        #textus-tab .textus-tab__dragger:active,
        #textus-tab .textus-tab__dragger:active::before {
            cursor: grabbing;
        }

    #textus-tab .textus-tab__dots {
        position: relative;
        height: 100%;
    }

    #textus-tab .textus-tab__dot {
        --offset: 3px;
        position: absolute;
        top: 50%;
        left: 2px;
        transform: translateY(-50%);
        width: 2px;
        height: 2px;
        border-radius: 50%;
        color: white;
        background: currentColor;
        box-shadow: 0px calc(var(--offset) * -1) 0 currentColor, var(--offset) calc(var(--offset) * -1) 0 currentColor, var(--offset) 0 0 currentColor, 0 var(--offset) 0 currentColor, var(--offset) var(--offset) 0 currentColor;
    }

    #textus-tab .textus-tab__opener {
        all: unset;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 40px;
        height: 40px;
        background-color: #283C59;
        z-index: 1;
    }

    #textus-tab .textus-tab__logo {
        border: none;
        width: 40px;
        height: 40px;
        background-repeat: no-repeat;
        background-size: 32px 32px;
        background-position: center;
        background-image: url('chrome-extension://hjnjkiddcmpamechmdjonecfjckboean/content/slideout-icon-v2.svg');
    }
