﻿:root {
    --ci-blue: #1a7abf;
    --ci-blue-dark: #1460a0;
    --ci-navy: #14206E;
    --ci-teal: #33A6A0;
    --ci-bg: #F1F1F1;
    --ci-border: #d0d8e0;
    --ci-divider: #d9e1e8;
    --ci-input-fill: #eaf1f8;
    --ci-input-prefix: #dde3ea;
    --ci-text: #333;
    --ci-text-light: #555;
}
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
html,
body {
    height: 100%;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--ci-bg) url(../images/bg.jpeg) no-repeat center center;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ci-text);
}

body::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(119, 174, 222, 0.5);
    z-index: 0;
    pointer-events: none;
}

a {
    color: var(--ci-blue);
    text-decoration: none;
}

a:hover {
    color: var(--ci-blue-dark);
    text-decoration: underline;
}

input::placeholder,
textarea::placeholder {
    color: #93959A;
}

form.ci-page {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    position: relative;
    z-index: 1;
}

.ci-top-rule {
    flex: 0 0 auto;
	height: calc(6px + env(safe-area-inset-top, 0px));
    background: var(--ci-navy);
}

.ci-stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
    min-width: 0;
    padding: 36px 40px;
    padding-right: max(40px, env(safe-area-inset-right, 0px));
    padding-bottom: max(36px, env(safe-area-inset-bottom, 0px));
    padding-left: max(40px, env(safe-area-inset-left, 0px));
}
@media (min-width: 1081px) and (min-height: 701px) {
    .ci-stage {
        justify-content: center;
    }
}
.ci-card {
    width: 100%;
    max-width: 980px;
    min-width: 0;
    background: #fff;
    border: 1px solid #B9B9B9;
    box-shadow: 0 4px 12px rgba(0, 26, 112, 0.10);
    display: flex;
    flex-direction: column;
}

.ci-card-body {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.ci-brand-col {
    width: 430px;
    flex: 0 0 430px;
    padding: 32px 40px;
    border-right: 1px solid #E4E4E4;
    display: flex;
    flex-direction: column;
}

.ci-form-col {
    flex: 1;
    padding: 32px 40px;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ci-form-col > div:not(.ci-errors) {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.ci-wordmark {
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.ci-wordmark b {
    font-weight: 700;
    color: var(--ci-teal);
}

.ci-wordmark span {
    font-weight: 300;
    color: var(--ci-navy);
}

.ci-wordmark sup {
    font-size: 12px;
    color: #93959A;
    margin-left: 3px;
}

.ci-tagline {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: var(--ci-text-light);
}

.ci-rule {
    margin-top: 26px;
    height: 1px;
    background: #E4E4E4;
}

.ci-props {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ci-prop {
    display: flex;
    gap: 14px;
    min-width: 0;
}

.ci-prop > div {
    min-width: 0;
    flex: 1 1 auto;
}

.ci-prop [class^="ci-icon-"] {
    font-size: 17px;
    width: 17px;
    height: 17px;
    color: var(--ci-teal);
    margin-top: 2px;
    flex: 0 0 auto;
}

.ci-prop .ci-icon-homebuilding {
    width: 22px;
    height: 22px;
}

.ci-prop-title {
    font-size: 14px;
    font-weight: 600;
    color: #1B1C1E;
}

.ci-prop-title-nowrap {
    white-space: nowrap;
}

.ci-prop-title,
.ci-prop-body {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.ci-prop-body {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.5;
    color: #58595B;
    text-wrap: pretty;
}

.ci-inline-links {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--ci-divider);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--ci-text-light);
}

.ci-sep {
    color: #B9B9B9;
}

.ci-h1 {
    font-size: 24px;
    letter-spacing: -0.01em;
    color: var(--ci-text);
    margin: 0;
    font-weight: bold;
}

.ci-sub {
    margin-top: 4px;
    font-size: 13px;
    color: var(--ci-text-light);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.ci-fields {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ci-fields-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ci-field {
    display: block;
}

.ci-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #58595B;
    margin: 0;
}

.ci-label-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.ci-input-wrap {
    display: flex;
    align-items: stretch;
    margin-top: 6px;
    border: 1px solid var(--ci-border);
    border-radius: 3px;
    overflow: hidden;
    background: var(--ci-input-fill);
}

.ci-input-prefix {
    width: 38px;
    flex: 0 0 38px;
    background: var(--ci-input-prefix);
    border-right: 1px solid var(--ci-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-input-prefix [class^="ci-icon-"] {
    font-size: 16px;
    color: var(--ci-text-light);
}

.ci-input-suffix {
    position: relative;
    width: 38px;
    flex: 0 0 38px;
    height: 38px;
    align-self: stretch;
    background: var(--ci-input-prefix);
    border-left: 1px solid var(--ci-border);
}

.ci-input-suffix .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 1;
    width: auto;
    height: auto;
    display: block;
    color: var(--ci-text-light);
}

.ci-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 38px;
    padding: 0 10px;
    font-family: inherit;
    font-size: 13px;
    color: var(--ci-text);
    background: var(--ci-input-fill);
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

select.ci-input {
    height: 38px;
}

.ci-input:focus {
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--ci-blue);
}

.ci-reveal {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--ci-blue);
}

.ci-reveal:hover {
    color: var(--ci-blue-dark);
}

.ci-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 20px;
    gap: 12px;
}

.ci-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #3A3B3D;
    cursor: pointer;
    margin: 0;
    font-weight: normal;
}

.ci-check input {
    width: 13px;
    height: 13px;
    margin: 0;
}

.ci-row a {
    font-size: 13px;
}

.ci-btn-primary {
    width: 100%;
    height: 42px;
    background: var(--ci-teal);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    line-height: 42px;
    padding: 0;
}

input[type="submit"].ci-btn-primary,
input[type="button"].ci-btn-primary {
    display: block;
    line-height: 42px;
}

.ci-btn-primary:hover,
a.ci-btn-primary:hover {
    background: #2C918C;
    color: #fff;
    text-decoration: none;
}

.ci-btn-primary:active {
    background: #257C78;
}

.ci-btn-primary .ci-icon-tlbr-next {
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-sso {
    margin-top: 22px;
}

.ci-or {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #777;
    font-size: 12px;
}

.ci-or::before,
.ci-or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--ci-divider);
}

.ci-sso-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ci-sso-grid > div {
    display: contents;
}

.ci-btn-secondary {
    height: 40px;
    background: #fff;
    border: 1px solid var(--ci-blue);
    border-radius: 3px;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--ci-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
}

a.ci-btn-secondary:hover,
.ci-btn-secondary:hover {
    background: var(--ci-input-fill);
    border-color: var(--ci-blue-dark);
    color: var(--ci-blue-dark);
    text-decoration: none;
}

.ci-help {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--ci-divider);
    font-size: 12.5px;
    color: var(--ci-text-light);
}

.ci-back {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
}

.ci-errors {
    margin-top: 0;
}

.ci-error,
.lblError,
.login_validation_summary,
.forgot_validation_summary,
.reset_validation_summary {
    color: #c0392b !important;
    font-size: 13px;
    line-height: 1.4;
}

.ci-footer {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #d1d1db70;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.ci-logos {
    display: flex;
    align-items: center;
    gap: 26px;
}

.ci-logo-slot {
    width: 140px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #93959A;
    text-align: center;
    padding: 4px;
}

.ci-logo-slot img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.ci-chbs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 44px;
}

.ci-chbs-name {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ci-navy);
}

.ci-chbs-sub {
    margin-top: 3px;
    font-size: 9.5px;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--ci-teal);
}

.ci-legal {
    font-size: 12.5px;
    color: var(--ci-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ci-center {
    text-align: center;
}

@media (max-width: 1080px) {
    .ci-card-body {
        flex-direction: column;
    }

    .ci-brand-col {
        width: 100%;
        flex: none;
        min-width: 0;
        border-right: none;
        border-bottom: 1px solid #E4E4E4;
    }

    .ci-prop-title-nowrap {
        white-space: normal;
    }

    .ci-form-col > div:not(.ci-errors) {
        flex: none;
    }

    .ci-inline-links,
    .ci-help {
        margin-top: 24px;
    }

    .ci-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .ci-legal {
        justify-content: flex-start;
    }

    .ci-sso-grid {
        grid-template-columns: 1fr;
    }

    .ci-stage {
        justify-content: flex-start;
        padding: 24px 16px;
        padding-right: max(16px, env(safe-area-inset-right, 0px));
        padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
        padding-left: max(16px, env(safe-area-inset-left, 0px));
    }
}

@media (max-width: 767px) {
    .ci-brand-col,
    .ci-form-col {
        padding: 20px 16px;
    }

    .ci-brand-col {
        padding-bottom: 16px;
        border-bottom: 1px solid #E4E4E4;
    }

    .ci-rule,
    .ci-props,
    .ci-inline-links {
        display: none;
    }

    .ci-wordmark {
        font-size: 28px;
        white-space: normal;
    }

    .ci-legal {
        flex-wrap: wrap;
    }

    .ci-logos {
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
    }

    .ci-logo-slot {
        width: auto;
        max-width: 100px;
        flex: 1 1 80px;
        height: 48px;
    }

    .ci-footer {
        padding: 0.75rem 1rem;
        gap: 16px;
    }

    .ci-input {
        font-size: 16px;
        height: 44px;
        min-height: 44px;
    }

    select.ci-input {
        height: 44px;
        min-height: 44px;
    }

    .ci-input-prefix {
        width: 44px;
        flex: 0 0 44px;
    }

    .ci-input-suffix {
        width: 44px;
        flex: 0 0 44px;
        height: 44px;
        min-height: 44px;
    }

    .ci-input-suffix .toggle-password {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ci-btn-primary {
        height: 44px;
        min-height: 44px;
        line-height: 44px;
    }

    input[type="submit"].ci-btn-primary,
    input[type="button"].ci-btn-primary {
        line-height: 44px;
    }

    .ci-btn-secondary {
        height: auto;
        min-height: 44px;
        padding: 10px 8px;
        line-height: 1.3;
        font-size: 16px;
    }

    .ci-stage {
        padding: 16px 12px;
        padding-right: max(12px, env(safe-area-inset-right, 0px));
        padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
        padding-left: max(12px, env(safe-area-inset-left, 0px));
    }
}

@media (max-width: 375px) {
    .ci-wordmark {
        font-size: 26px;
    }
}

@media (max-height: 700px), (orientation: landscape) and (max-width: 932px) {
    .ci-stage {
        justify-content: flex-start;
    }
}

@media (min-width: 576px) {
    #divPBIPortalDialog {
        max-width: 800px;
        margin: 1.75rem auto;
    }
}

.lnkanchor:hover,
.lnkanchor:focus {
    background-color: #589794 !important;
}

.bg-green {
    background: #5AB6B2;
}

.modal1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: sans-serif;
    display: none;
    z-index: 9999;
}

.modal1 .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 6px;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 45rem;
    max-width: 95%;
    border: 5px solid #f00;
    border-radius: 0.5rem;
}

.modal1 .body-content {
    margin-top: 10px;
    padding: 1rem 1.5rem;
    color: #333 !important;
    text-align: justify;
}

.modal1 .close-button {
    float: right;
    width: 6.0rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
    padding: 5px;
}

.modal1 .close-button:hover {
    background-color: darkgray;
}

.schedule-outage-link {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: red;
    background-color: white;
    padding: 6px 3px;
    margin-top: 18px;
    border: 2px solid;
    cursor: pointer;
}
