html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial;
}

.fht-sidebar {
    background: #2c8078;
    color: #fff;
    padding: 0;
    font-weight: 300;
}

.fht-sidebar ul li a {       
    color: #fff;
    padding: 5px 15px;
    display: block;    
}

.fht-sidebar ul li {
    cursor: pointer;
}

.fht-sidebar ul li.active,
.fht-sidebar ul li:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.fht-main {
    flex: auto;
}

.fht-main-wrapper {
    min-height: 100%;
}

.fht-nav {
    color: #2c8078;
}

.fht-footer {
    padding: 5px 15px 0px;
}

.fht-logo {
    width: 40px;
    margin-right: 15px;
}

.fht-nav-wrapper {
    display: flex;
    align-items: center;
}

/* Login related css */

.fht-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .fht-login-wrapper img {
        padding-top: 16px;
    }

    .fht-login-wrapper h4 {
        padding: 16px;
        font-weight: 400;
    }

.fht-card {
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: rgb(0 0 0 / 20%) 0px 3px 3px -2px, rgb(0 0 0 / 14%) 0px 3px 4px 0px, rgb(0 0 0 / 12%) 0px 1px 8px 0px;
    width: 480px;
    min-height: 300px;
}

.fht-login-wrapper form {
    text-align: left;
    padding: 0px 16px;
}

.fht-input-wrapper {
    position: relative;
    margin: 16px 0px 8px;
}

    .fht-input-wrapper label {
        color: rgba(0, 0, 0, 0.6);
        font-family: Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 23px;
        letter-spacing: 0.00938em;
        padding: 0px;
        display: block;
        transform-origin: left top;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: calc(133% - 24px);
        position: absolute;
        left: 0px;
        top: 0px;
        transform: translate(10px, -9px) scale(0.75);
        transition: color 200ms cubic-bezier(0, 0, 0.2, 1) 0ms, transform 200ms cubic-bezier(0, 0, 0.2, 1) 0ms, max-width 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
        z-index: 1;
        pointer-events: auto;
        user-select: none;
        padding: 0 5px;
        background: #fff;
    }

    .fht-input-wrapper input {
        width: 100%;
        padding: 16.5px 14px 16.5px 45px;
        border-radius: 4px;
        border: 1px solid #c4c4c4;
        outline-color: #2c8078;
    }

.fht-input-icon {
    color: rgba(0, 0, 0, 0.54);
    fill: rgba(0, 0, 0, 0.54);
    width: 24px;
    position: absolute;
    bottom: 50%;
    margin-bottom: -12px;
    left: 16px;
}

.fht-toggle-icon {
    color: rgba(0, 0, 0, 0.54);
    fill: rgba(0, 0, 0, 0.54);
    width: 24px;
    position: absolute;
    bottom: 50%;
    margin-bottom: -12px;
    right: 16px;
    cursor: pointer;
}

.fht-button-wrapper {
    display: flex;
    justify-content: center;
}

.fht-login-button {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 8px 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-width: 64px;
    padding: 8px 22px;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    color: rgb(255, 255, 255);
    background-color: rgb(44, 128, 120);
    box-shadow: rgb(0 0 0 / 20%) 0px 3px 1px -2px, rgb(0 0 0 / 14%) 0px 2px 2px 0px, rgb(0 0 0 / 12%) 0px 1px 5px 0px;
}

    .fht-login-button:hover {
        text-decoration: none;
        background-color: rgb(30, 89, 84);
        box-shadow: rgb(0 0 0 / 20%) 0px 2px 4px -1px, rgb(0 0 0 / 14%) 0px 4px 5px 0px, rgb(0 0 0 / 12%) 0px 1px 10px 0px;
    }

.fht-error {
    color: rgb(231, 81, 82);
    margin-top: 5px;
}