<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*/*!
 * Name: login.css
 * html: Login.html
 */

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');

body {
    height: 100vh;
    background: #eeeeee;
    /*background: linear-gradient(to bottom, rgba(27,52,90,0.8), rgba(238,238,238,0.8)), url('/ehub/src/content/images/background2.png') center center no-repeat;*/
    background-size: cover;
    background-attachment: fixed;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
}

.bg-primary {
    background-color: #eeeeee;
    color: #4f4f4f;
}

.login-form {
    background-color: #FFFFFF;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.15);
    border-radius: 4px;
}

a {
    color: #17A8EB;
}

    a:hover {
        color: #b3b3b3;
    }

/* login border, hidden on mobile */
@media screen and (min-width: 768px) {
    .login-form &gt; .row &gt; .col-sm-6 {
        margin: 15px 0px;
    }

        .login-form &gt; .row &gt; .col-sm-6:not(:last-child) {
            border-right: 1px solid #b3b3b3;
        }
}

/*.login-form {
  max-width: 330px;
  margin: 0 auto;
}*/

.login-heading {
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
}

.login-subheading {
    font-size: 14px;
    font-weight:normal;
    margin: 0 0 30px 0;
}

.full-width {
    width: 100%;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

label {
    font-weight: normal;
}

.login-form .form-control {
    position: relative;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    border-radius: 0px;
}

.login-form .form-control:focus {
    z-index: 2;
}

.login-form input[type="text"], .login-form input[type="password"] {
    border: 1px solid #b3b3b3;
    background-color: transparent;
    color: #4f4f4f;
    border-radius: 4px;
}

.login-form .form-password input[type="text"], .login-form .form-password input[type="password"] {
    width: calc(100% - 40px);
    display: unset;
}

.forgot {
    position: absolute;
    bottom: -25px;
    right: 0;
}

    .forgot a:hover {
        text-decoration: none;
    }

/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

    /* Hide the tooltip content by default */
    [data-tooltip]:before,
    [data-tooltip]:after {
        visibility: hidden;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
        pointer-events: none;
    }

    /* Position tooltip above the element */
    [data-tooltip]:before {
        position: absolute;
        bottom: 150%;
        right: 10%;
        margin-bottom: 5px;
        margin-left: -80px;
        padding: 7px;
        width: 240px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        background-color: #fff;
        color: #4f4f4f;
        content: attr(data-tooltip);
        text-align: center;
        font-size: 14px;
        font-style: normal;
        line-height: 1.2;
    }

    /* Triangle hack to make tooltip look like a speech bubble */
    [data-tooltip]:after {
        position: absolute;
        bottom: 150%;
        right: 50%;
        margin-left: -5px;
        width: 0;
        border-top: 5px solid #fff;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        content: " ";
        font-size: 0;
        line-height: 0;
    }

    /* Show tooltip content on hover */
    [data-tooltip]:hover:before,
    [data-tooltip]:hover:after {
        visibility: visible;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
    }

.help-icon {
    width: 16px;
    height: 16px;
}

.text-danger {
    color: #CC0000;
}

.btn {
    border-radius: 0px;
    border: 0px;
    box-shadow: 0px 2px 2px #4f4f4f;
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
}

    .btn.btn-primary, input[type="submit"].btn-primary {
        background-color: #047FB8;
        border-radius: 4px;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.08);
        margin-bottom: 10px;
        text-transform: capitalize;
    }

        .btn-primary:hover, input[type="submit"]:hover, input[type="submit"].btn-primary:hover {
            background-color: #68B842;
        }

    .btn.btn-default, input[type="submit"].btn-default {
        background-color: #D3D3D3;
        color: #4f4f4f;
    }

.btn-default:hover, input[type="submit"]:hover, .btn-default:focus, input[type="submit"]:focus {
    background-color: #b3b3b3;
}

.login-footer {
    text-align: center;
    padding: 30px 0px;
}

.team-logo {
    width: 200px;
    max-width: 80%;
}

.logo {
    max-height: 50px;
    max-width: 200px;
    margin: 15px;
}

@media screen and (min-width: 768px) {
    .logo {
        max-height: 100px;
        margin: 30px;
    }
}

.profit {
    font-size: 24px;
    font-style: italic;
}

.LoginPageButtons {
    width: 45%;
    float: right;
}
@media screen and (max-width: 767px) {
    .LoginPageButtons {
        width: 45%;
        float:none;
    }
}

.ShowPassword {
    width: 36px;
    height: 36px;
}

input.number-without-arrows::-webkit-outer-spin-button,
input.number-without-arrows::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number].number-without-arrows {
    -moz-appearance: textfield;
}</pre></body></html>