﻿html {
    height: 100%
}

body {
    margin: 0px;
    background-color: #eee;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

/*-------------------------------------------------------*/
/* login */
.c-background {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1000;
    margin: 0em;
}

.c-background--login {
    background-color: #85DE19;
}


.c-login {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(40% - 250px);
    left: calc(50% - 250px);
    width: 400px;
    height: 400px;
    padding: 2em;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 0px;
    box-shadow: 2px 2px 25px rgba(36,36,36,0.55);
}

#logOnForm {
    margin: 0px !important;
}

.c-login__opacity {
    position: fixed;
    top: calc(40% - 250px);
    left: calc(50% - 250px);
    width: 400px;
    height: 400px;
    background-color: #003670;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    opacity: 0.9;
    padding: 2em;
}

.c-login__logo {
    width: 100%;
    height: 90px;
    z-index: 10;
    margin: 2px !important;
    padding-right: 50px;
}

.c-login__form {
    position: relative;
    text-align: center;
    font-size: 2em !important;
    font-family: calibri;
    color: #eee;
    font-weight: bold !important;
    border: 0px;
    padding: 0em;
}

#Username, #Password, #Code {
    padding: 10px !important;
    max-width: 82%;
    margin-bottom: 5px !important;
    margin-top: 1px !important;
    border: 0px !important;
    background-color: whitesmoke;
}

#login-btn {
    background-color: #85DE19;
    color: #002121;
}


.login-container label {
    font-size: 1em !important;
    font-weight: bold !important;
    color: #002121;
}

.c-login__form > div {
    margin-top: .4em;
}

.c-login__portalname {
    margin-bottom: 15px;
    display: block;
    font-family: 'Roboto Slab', serif;
    font-size: 25px !important;
    color: #fff;
}

.c-login input {
    height: 2.5em;
    width: 72%;
    font-family: calibri,serif;
    text-align: center;
}

.login-container .button {
    background-color: #85DE19 !important;
    height: 3em;
    font-size: 1.1em;
    color: #002121 !important;
    font-weight: bold;
    box-shadow: 2px 2px 25px rgba(36,36,36,0.55);
}

.login-container .button:hover {
    cursor:pointer;
}

.login-container {
    display: flex;
    max-width: 651px;
    max-height: 369px;
    min-height: 369px;
    width: 100%;
    box-shadow: 2px 2px 25px rgba(36,36,36,0.55);
    border-radius: 10px;
    min-width: 651px;
    font-family: calibri;
}

.left-section {
    background-image: url(/Images/login_background_tinted.png) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45%;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding-top: 300px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

    .left-section .card-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .left-section h2 {
        color: #ffffff
    }

.right-section {
    padding: 50px 30px 30px 30px;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

    .right-section .card-image {
        max-width: 100%;
        height: 62px;
        border-radius: 10px;
    }

.left-section, .right-section {
    box-sizing: border-box;
}

    .right-section h1 {
        color: #0baf50;
        margin-bottom: 30px;
    }

label {
    margin-bottom: 5px;
    color: #333;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

button {
    background-color: #0baf50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    button:hover {
        background-color: #088440;
    }

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-footer-icons {
    color: #85DE19;
}

.my-container * {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.my-container {
    height: 10%;
    max-height: 10%;
}
/*------------------------------------------------------------------*/
/* component footer */
.c-footer {
    display: flex;
    position: absolute;
    bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 20px !important;
    width: 100%;
    height: 40px;
    font-family: calibri;
    background-color: #003670;
    list-style-type: none;
    padding-inline-start: unset;
}

.c-footer--login {
    background-color: #214443 !important;
}

.c-footer > li {
    float: right;
    padding: 10px 45px 10px 15px;
    color: #ffffff;
    text-decoration: none;
    text-shadow: none;
}

.c-footer a, .c-footer a:hover {
    color: #eee !important;
}

    .c-footer a:hover {
        text-decoration: underline !important;
    }

.c-footer__phone > i {
    transform: scaleX(-1);
}


/*-------------------------------------------------------*/
/* utils */
.u-margin-right-2 {
    margin-right: 2px;
}

.u-margin-left-2 {
    margin-left: 2px;
}

.u-margin-right-10 {
    margin-right: 10px;
}

.u-margin-left-10 {
    margin-left: 10px;
}

.u-list-right {
    margin-right: auto;
}

.u-list-left {
    margin-left: auto;
}

.u-roundcourner-full {
    border-radius: 50px !important;
    -moz-border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
    border: 0px !important;
}


.keyboard-link {
    background: url('../Images/keyboard.png') no-repeat;
    width: 28px;
    height: 16px;
    background-position: 0 2px, center;
    display: inline-block;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    right: 1.5em;
}

.login-keyboard-link {
    background: url('../Images/keyboard.png') no-repeat;
    width: 28px;
    height: 16px;
    background-position: 0 2px, center;
    display: inline-block;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    right: 2.5em;
}

/* keyboard */
.ui-keyboard {
    padding: .3em;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 16000;
    border: 1px solid #444;
    background: #fff;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

    .ui-keyboard div {
        font-size: 1.1em;
    }

.ui-keyboard-button {
    font-size: 16px;
    height: 2em;
    width: 2em;
    margin: .1em;
    cursor: pointer;
    overflow: hidden;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-weight: normal;
    background-color: #214443;
    color: white !important;
}

    .ui-keyboard-button span {
        padding: 0;
        margin: 0;
        white-space: nowrap;
    }

.ui-keyboard-button-endrow {
    clear: left;
}

.ui-keyboard-widekey {
    width: 5em;
}

.ui-keyboard-space {
    width: 15em;
    text-indent: -999em;
}
/* width is calculated in IE, since 99% = 99% full browser width =( */
.ui-keyboard-preview-wrapper {
    text-align: center;
    min-width:96%;
    max-width:96%;
}

.ui-keyboard-preview {
    text-align: left;
    margin: 0 0 3px 0;
    display: inline;
    width: 99%;
    font-weight: normal;
    font-size: 16px;
}

.ui-keyboard-keyset {
    text-align: center;
}

.ui-keyboard-input {
    text-align: left;
}

.ui-keyboard-input-current {
    -moz-box-shadow: 1px 1px 10px #00f;
    -webkit-box-shadow: 1px 1px 10px #00f;
    box-shadow: 1px 1px 10px #00f;
}

.ui-keyboard-input-placeholder {
    color: #888;
}
/* disabled or readonly inputs, or use input[disabled='disabled'] { color: #f00; } */
.ui-keyboard-nokeyboard {
    color: #888;
    border-color: #888;
}

.ui-keyboard-button.disabled {
    opacity: 0.5;
    filter: alpha(opacity=50);
}
/* used by the acceptValid option to make the accept button appear faded */

/* combo key styling - toggles diacritics on/off */
.ui-keyboard-button.ui-keyboard-combo.ui-state-default {
    border-color: #ffaf0f;
}

/* jQuery Mobile specific definitions & media queries can be found in keyboard.css file, but not included here */
