﻿body, html {
    height: 100%;
    font-size: 16px;
    overflow: hidden;
    color: #546176;
}

body {
    background: linear-gradient(#1e2556 0%,#0d112f 100%);
    background-size: cover;
    background-repeat: no-repeat;
}

.navbar-brand > .icon-banner {
    position: relative;
    top: -2px;
    display: inline;
}

.icon {
    position: relative;
    top: -10px;
}

.logged-out iframe {
    display: none;
    width: 0;
    height: 0;
}

.login-page {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#1e2556 0%,#0d112f 100%);
}

@media screen AND (min-width: 768px) {
    .login-page {
        max-width: 768px;
    }
}

@media screen AND (min-width: 960px) {
    .login-page {
        max-width: 960px;
    }
}

.login-button {
    font-size: 12px;
}

#LoginButton {
    color: #fff;
    cursor: pointer;
    background: #278838;
    border-radius: 3px;
    height: 2.5rem;
    padding: 0 2rem;
    font-size: .875rem;
    font-weight: 400;
    transition: all .15s ease-in-out;
}


    #LoginButton:focus {
        box-shadow: 0 0 0 0.25rem rgba(39,136,56,.3);
    }

    #LoginButton:hover {
        background: #20702e;
    }

    #LoginButton:active {
        background: #195824;
        box-shadow: 0 0 0 0.25rem rgba(39,136,56,.3);
    }

    #LoginButton:disabled {
        opacity: 0.5;
        background-color: #278838;
    }

.page-title {
    font-size: 16px;
    font-weight: bold;
}

.login-panel {
    min-width: 20rem;
    max-width: 38rem;
    width: 100%;
    background: #fff;
    margin: 0 auto 0;
    align-self: center;
    align-items: center;
    border-radius: 3px;
    box-shadow: 4px 7px 19px #061C2B;
    z-index: 2;
    color: #001737;
}

    .login-panel .intro {
        border-bottom: thin solid #dee1ea;
        margin: 0 0 1rem;
        padding: 1rem 2rem;
        transition: all .25s linear;
    }

        .login-panel .intro h2 {
            color: #001737;
            font-size: 1.25rem;
            font-weight: 400;
            line-height: 1.5;
        }

        .login-panel .intro p {
            color: #546176;
            margin: 0.375rem 0;
            font-size: .875rem;
            font-weight: 400;
            line-height: 1.5;
        }

.login-panel__error {
    color: #001737;
    background: #f34235;
    padding: 0.75rem;
    padding-left: 2rem;
    width: 100%;
}

.backgroundAnimation {
    position: absolute;
    width: 1920px;
    height: 1080px;
    left: 64px;
    top: -36px;
}

.homePage__bubble {
    transform-origin: 50% 50%;
}

    .homePage__bubble.-done {
        -webkit-animation: breathing 16s linear infinite;
        animation: breathing 16s linear infinite;
    }

    .homePage__bubble.-red {
        fill: #ff4040;
    }

    .homePage__bubble.-gray {
        fill: #f7f7f7;
    }

    .homePage__bubble.-white {
        fill: #fff;
    }

    .homePage__bubble.-cyan {
        fill: #25cad2;
    }

    .homePage__bubble.-charcoal {
        fill: #061c2b;
    }

/*Roboto font*/
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/roboto-medium.eot") format("eot"), url("../fonts/roboto-medium.woff2") format("woff2"), url("../fonts/roboto-medium.woff") format("woff"), url("../fonts/roboto-medium.ttf") format("truetype"), url("../fonts/roboto-medium.svg#Roboto") format("svg");
}


@media print {
    * {
        background-color: transparent !important;
        box-shadow: none !important;
        color: #000 !important;
        text-shadow: none !important;
    }
}
/*! CSS Used keyframes */
@-webkit-keyframes breathing {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.5);
    }

    60% {
        transform: scale(1);
    }

    to {
        transform: scale(0.5);
    }
}

@keyframes breathing {
    0% {
        transform: scale(0.9);
    }

    25% {
        transform: scale(1);
    }

    60% {
        transform: scale(0.9);
    }

    to {
        transform: scale(0.9);
    }
}

.login-panel__form.max-width {
    width: 100%;
    margin: 40px;
}

.login-panel__form input {
    width: 294px;
    height: 40px;
    flex-grow: 0;
    border-radius: 2px;
    border: solid 1px #f1f3f4;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #061c2b;
}

.login-panel__form button {
    background: #188ae2;
    color: #fff;
    width: 100%;
    border: none;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    padding: 11px 0 12px;
}

    .login-panel__form button:hover {
        background: #3179a3;
        outline: none;
        border-radius: 2px;
    }

    .login-panel__form button:focus {
        outline: none;
        border-radius: 2px;
        border: solid 1px #195c8a;
        background-color: #76bce9;
        color: #fff;
    }

    .login-panel__form button:active {
        background: #41a1e2;
        border-radius: 2px;
        outline: none;
    }

.login-panel__form .btn-danger {
    background: #f34235;
}

    .login-panel__form .btn-danger:hover {
        background: #e12121;
        width: inherit;
    }

    .login-panel__form .btn-danger:active {
        background: #f34235;
        outline: none;
        width: inherit;
    }

login-additional {
    width: 0;
}

.cls-1 {
    fill: #ff6c2c;
}

.cls-2 {
    fill: #444867;
}

.cls-3 {
    fill: none;
}

.grants .grant {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid lightgray;
}

    .grants .grant img {
        width: 100px;
        height: 100px;
    }

    .grants .grant .clientname {
        font-size: 140%;
        font-weight: bold;
    }

    .grants .grant .granttype {
        font-size: 120%;
        font-weight: bold;
    }

    .grants .grant .created {
        font-size: 120%;
        font-weight: bold;
    }

    .grants .grant .expires {
        font-size: 120%;
        font-weight: bold;
    }

    .grants .grant li {
        list-style-type: none;
        display: inline;
    }

        .grants .grant li:after {
            content: ', ';
        }

        .grants .grant li:last-child:after {
            content: '';
        }

/* Login form style */
.label {
    position: relative;
    font-weight: normal;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px white inset; /* Change the color to your own background color */
    -webkit-text-fill-color: #333;
}

input[type=text], input[type=password] {
    padding: 14px 14px 13px;
    background-color: #fff !important;
    outline: none;
}

input {
    filter: none;
}

.input-fieldset {
    position: relative;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 6.5rem;
    padding: 0 2rem;
    display: -ms-flexbox;
    display: flex;
}

    .input-fieldset .legend {
        position: absolute;
        left: 10px;
        top: -7px;
        padding: 0 3px;
        font-size: 11px;
        color: #555;
        background-color: #fff;
    }

.errorMessage {
    width: 100%;
    color: #e12121;
    font-size: 12px;
    font-weight: normal;
    padding: 0 12px 0 12px;
}


.k-button.k-primary, .k-button.k-primary:active {
    background: none #278838;
    color: #fff;
    height: 37px;
    text-decoration: none;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
}

.k-button, .k-button:focus, .k-button:active, .k-button:active:hover, .k-button.k-state-focused {
    background: none #278838;
    border-color: #358ed7;
    color: #358ed7;
    border-radius: 2px;
    line-height: 18px;
}

    .k-button:hover, .k-button:focus {
        box-shadow: 0 1px 2px 0 rgba(8, 35, 48, 0.24), 0 2px 6px 0 rgba(8, 35, 48, 0.16) !important;
    }

.k-primary {
    color: #fff;
    border-color: #d5570f;
    background-color: #f35800;
    background-image: url(textures/highlight.png);
    background-image: none,linear-gradient(to bottom,rgba(255,255,255,.25) 0,rgba(255,255,255,0) 100%);
}

.k-button {
    font-family: Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12px !important;
    width: 100%;
    height: 28px;
    margin: 0;
    padding: 4px 8px;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    background-repeat: repeat-x;
    background-position: 0 center;
    line-height: 1.42857143;
    text-align: center;
    text-decoration: none;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: 0;
    -webkit-appearance: none;
    position: relative;
}

.login-button-primary {
    width: 294px;
    height: 37px;
    flex-grow: 0;
    padding: 7px 48px 9px;
    border-radius: 2px;
    background-color: #41a1e2;
}

    .login-button-primary span {
        width: 174px;
        height: 13px;
        flex-grow: 0;
        margin: 2px 0 3px 6px;
        font-family: Roboto, sans-serif;
        font-size: 15px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: center;
        color: #fff;
        white-space: nowrap;
    }

    .login-button-primary img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .login-button-primary:focus {
        box-shadow: 0 0 0 0.25rem rgba(39,136,56,.3);
    }

    .login-button-primary:hover {
        background-color: #20702e;
    }

    .login-button-primary:active {
        background-color: #41a1e2;
    }

    .login-button-primary:disabled {
        background-color: #41a1e2;
    }

input[type="checkbox"] {
    width: 20px !important;
    margin: 0;
}

    input[type="checkbox"]:not(:checked) + .label {
        color: #333;
    }

[type="checkbox"] + .label.inline, [type="radio"] + .label.inline {
    margin-right: 20px;
    color: #333;
}

.separator {
    width: 100%;
    height: 24px;
    flex-grow: 0;
    display: flex;
    align-items: center;
    text-align: center;
}

    .separator span {
        width: 44px;
        height: 24px;
        flex-grow: 0;
        margin: 0 5px;
        font-family: Roboto, sans-serif;
        font-size: 12px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
        letter-spacing: 0.44px;
        text-align: center;
    }

    .separator::before, .separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #ddd;
    }

.provider {
    width: 12px;
    height: 12px;
    object-fit: contain;
    margin-right: 5px;
}

/* Login form style */

.logo {
    justify-content: flex-start;
    width: 100%;
    padding: 0 3rem;
    transition: all .25s linear;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 2.5rem;
    left: 0;
}

    .logo svg {
        width: 12rem;
    }

.input-fieldset label {
    white-space: nowrap;
    color: #546176;
    margin: 0.5rem 0;
    font-size: .875rem;
}

.input-fieldset input {
    width: 100%;
    color: #001737;
    border: 1px solid #b8c5d5;
    border-radius: 3px;
    height: 2.5rem;
    padding: 0 1rem;
    font-size: .875rem;
    transition: box-shadow .15s ease-in-out;
}

    .input-fieldset input:hover {
        border: 1px solid #007ac9;
    }

    .input-fieldset input:focus {
        border: 1px solid #007ac9;
        box-shadow: 0 0 0 0.25rem rgba(0,122,201,.3);
    }


#actions {
    border-top: thin solid #dee1ea;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    transition: all .25s linear;
    display: -ms-flexbox;
    display: flex;
}

    #actions .buttons {
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-align: center;
        align-items: center;
        display: -ms-flexbox;
        display: flex;
    }

.OtherLogins {
    justify-content: center;
    padding: 1rem;
    transition: all .25s linear;
    display: -ms-flexbox;
    display: flex;
}

    .OtherLogins a {
        border: none;
    }

div.login-panel__form p {
    margin: 0 0 1rem;
    padding: 0 2rem;
    transition: all .25s linear;
}

.navbar > .container-fluid {
    justify-content: flex-end !important;
}

.alert-danger {
    margin-bottom: 0;
}

.login-panel__form .title {
    padding-top: 12px;
}