/* Patternfly CSS places a "bg-login.jpg" as the background on this ".login-pf" class.
   This clashes with the "keycloak-bg.png' background defined on the body below.
   Therefore the Patternfly background must be set to none. */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700);

.login-pf {
    background: #f2f2f2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.login-pf {
    background: #F2F2F2 !important;
    background-size: cover !important;
    height: auto;
}

/*IE compatibility*/
.pf-c-form-control {
    font-size: 14px;
    font-size: var(--pf-global--FontSize--sm);
    border-width: 1px;
    border-width: var(--pf-global--BorderWidth--sm);
    border-color: #ededed #ededed #8a8d90 #ededed;
    border-color: var(--pf-global--BorderColor--300) var(--pf-global--BorderColor--300) var(--pf-global--BorderColor--200) var(--pf-global--BorderColor--300);
    background-color: #ffffff;
    background-color: var(--pf-global--BackgroundColor--100);
    height: 36px;
    height: calc(
            var(--pf-c-form-control--FontSize) * var(--pf-c-form-control--LineHeight) +
            var(--pf-c-form-control--BorderWidth) * 2 + var(--pf-c-form-control--PaddingTop) +
            var(--pf-c-form-control--PaddingBottom)
    );
    padding: 5px 0.5rem;
    padding: var(--pf-c-form-control--PaddingTop) var(--pf-c-form-control--PaddingRight) var(--pf-c-form-control--PaddingBottom) var(--pf-c-form-control--PaddingLeft);
}

/* Center input */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    height: 100vh;
    background: #F2F2F2 !important;
    background-size: cover !important;
}

.wrapper {
    position: relative;
}

/* add basic styles for input */
.wrapper {
    position: relative;
    margin-bottom: 2.5rem;
}

.pc-input {
    width: 90%;
    padding: 10px 20px;
    border-radius: 3.5px;
    border: 1px solid #677289;
    outline: none;
    background-color: white;

    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #21252c;
}

.pc-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff, 0 0 0 5px #1976d2;
}

/* Change position offset top and left when input focused or valided */
.pc-input:focus + .pc-label,
.pc-input:read-only + .pc-label,
.pc-input:not(:placeholder-shown) + .pc-label {
    top: -8px;
    left: 10px;
}

/* Move label into input and disable user event on it */
.pc-label {
    position: absolute;
    left: 20px;
    top: 0.9rem;
    color: #ccc;
    pointer-events: none;
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #677289;
    display: flex;
    transition: 0.2s ease;
}

/* before and after of label as the layer for backgroud of haft their parent */
.pc-label::before {
    transition: all 0.2s ease;
    position: absolute;
    height: 50%;
    width: 100%;
    background: white;
    content: '';
}

.pc-label::after {
    transition: all 0.2s ease;
    position: absolute;
    height: 50%;
    width: 100%;
    background: #f2f2f2;
    content: '';
    top: 50%;
}

/* Span have text for label, it will put on top of label::after, label::before */
span {
    position: relative;
    z-index: 99;
}

/* Change the backgroud color following their parent */
.pc-input:focus + .pc-label::after {
    background: #e8eff5;
}

.pc-input:focus + .pc-label::before {
    background: #fafafa;
}

textarea.pf-c-form-control {
    height: auto;
}

.pf-c-form-control:hover,
.pf-c-form-control:focus {
    border-bottom-color: #0066cc;
    border-bottom-color: var(--pf-global--primary-color--100);
    border-bottom-width: 2px;
    border-bottom-width: var(--pf-global--BorderWidth--md);
}

.pf-c-form-control[aria-invalid='true'] {
    border-bottom-color: #c9190b;
    border-bottom-color: var(--pf-global--danger-color--100);
    border-bottom-width: 2px;
    border-bottom-width: var(--pf-global--BorderWidth--md);
}

.pf-c-check__label,
.pf-c-radio__label {
    font-size: 14px;
    font-size: var(--pf-global--FontSize--sm);
}

.pf-c-alert.pf-m-inline {
    margin-bottom: 0.5rem; /* default - IE compatibility */
    margin-bottom: var(--pf-global--spacer--sm);
    padding: 0.25rem;
    padding: var(--pf-global--spacer--xs);
    border: solid #ededed;
    border: solid var(--pf-global--BorderColor--300);
    border-width: 1px;
    border-width: var(--pf-c-alert--m-inline--BorderTopWidth) var(--pf-c-alert--m-inline--BorderRightWidth) var(--pf-c-alert--m-inline--BorderBottomWidth) var(--pf-c-alert--m-inline--BorderLeftWidth);
    display: -ms-flexbox;
    display: grid;
    -ms-grid-columns: max-content 1fr max-content;
    grid-template-columns: max-content 1fr max-content;
    grid-template-columns: var(--pf-c-alert--grid-template-columns);
    grid-template-rows: 1fr auto;
    grid-template-rows: var(--pf-c-alert--grid-template-rows);
}

.pf-c-alert.pf-m-inline::before {
    position: absolute;
    top: -1px;
    top: var(--pf-c-alert--m-inline--before--Top);
    bottom: -1px;
    bottom: var(--pf-c-alert--m-inline--before--Bottom);
    left: 0;
    width: 3px;
    width: var(--pf-c-alert--m-inline--before--Width);
    content: '';
    background-color: #ffffff;
    background-color: var(--pf-global--BackgroundColor--100);
}

.pf-c-alert.pf-m-inline.pf-m-success::before {
    background-color: #92d400;
    background-color: var(--pf-global--success-color--100);
}

.pf-c-alert.pf-m-inline.pf-m-danger::before {
    background-color: #c9190b;
    background-color: var(--pf-global--danger-color--100);
}

.pf-c-alert.pf-m-inline.pf-m-warning::before {
    background-color: #f0ab00;
    background-color: var(--pf-global--warning-color--100);
}

.pf-c-alert.pf-m-inline .pf-c-alert__icon {
    padding: 1rem 0.5rem 1rem 1rem;
    padding: var(--pf-c-alert--m-inline__icon--PaddingTop) var(--pf-c-alert--m-inline__icon--PaddingRight) var(--pf-c-alert--m-inline__icon--PaddingBottom) var(--pf-c-alert--m-inline__icon--PaddingLeft);
    font-size: 16px;
    font-size: var(--pf-c-alert--m-inline__icon--FontSize);
}

.pf-c-alert.pf-m-success .pf-c-alert__icon {
    color: #92d400;
    color: var(--pf-global--success-color--100);
}

.pf-c-alert.pf-m-success .pf-c-alert__title {
    color: #486b00;
    color: var(--pf-global--success-color--200);
}

.pf-c-alert.pf-m-danger .pf-c-alert__icon {
    color: #c9190b;
    color: var(--pf-global--danger-color--100);
}

.pf-c-alert.pf-m-danger .pf-c-alert__title {
    color: #a30000;
    color: var(--pf-global--danger-color--200);
}

.pf-c-alert.pf-m-warning .pf-c-alert__icon {
    color: #f0ab00;
    color: var(--pf-global--warning-color--100);
}

.pf-c-alert.pf-m-warning .pf-c-alert__title {
    color: #795600;
    color: var(--pf-global--warning-color--200);
}

.pf-c-alert__title {
    font-size: 14px; /* default - IE compatibility */
    font-size: var(--pf-global--FontSize--sm);
    padding: 5px 8px;
    padding: var(--pf-c-alert__title--PaddingTop) var(--pf-c-alert__title--PaddingRight) var(--pf-c-alert__title--PaddingBottom) var(--pf-c-alert__title--PaddingLeft);
}

.pf-c-button {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 14px;
    min-height: 44px;
    background: #066ae3;
    border-radius: 4px;
    padding: 0.375rem 1rem;
    padding: var(--pf-global--spacer--form-element) var(--pf-global--spacer--md);
}

.pf-c-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff, 0 0 0 5px #1976d2;
}

/* default - IE compatibility */
.pf-m-primary {
    color: #ffffff;
    background-color: #0066cc;
    background-color: var(--pf-global--primary-color--100);
}

/* default - IE compatibility */
.pf-m-primary:hover {
    background-color: #004080;
    background-color: var(--pf-global--primary-color--200);
}

/* default - IE compatibility */
.pf-c-button.pf-m-control {
    border: solid 1px;
    border: solid var(--pf-global--BorderWidth--sm);
    border-color: rgba(230, 230, 230, 0.5);
}

/*End of IE compatibility*/
h1#kc-page-title {
    margin-top: 30px;

    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 39px;
    color: #21252c;
    margin-bottom: 0rem;
}

#kc-locale ul {
    background-color: #fff;
    background-color: var(--pf-global--BackgroundColor--100);
    display: none;
    top: 20px;
    min-width: 100px;
    padding: 0;
}

#kc-locale-dropdown {
    display: inline-block;
}

#kc-locale-dropdown:hover ul {
    display: block;
}

/* IE compatibility */
#kc-locale-dropdown a {
    color: #6a6e73;
    color: var(--pf-global--Color--200);
    text-align: right;
    font-size: 14px;
    font-size: var(--pf-global--FontSize--sm);
}

/* IE compatibility */
a#kc-current-locale-link::after {
    content: '\2c5';
    margin-left: 4px;
    margin-left: var(--pf-global--spacer--xs);
}

.login-pf .container {
    padding-top: 40px;
}

.login-pf a:hover {
    color: #0099d3;
}

#kc-logo {
    width: 100%;
}

div.kc-logo-text {
    background-repeat: no-repeat;
    height: 63px;
    width: 300px;
    margin: 0 auto;
}

div.kc-logo-text span {
    display: none;
}

#kc-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    color: #ededed;
    border-bottom: 1px solid #677289;
}

#kc-header-wrapper {
    padding: 0px 10px 20px;
    white-space: normal;
}

#kc-header-wrapper.title {
    text-align: left;
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 80px;
    max-width: 80%;

    color: #21252c;
}

#kc-header-subtitle {
    text-align: left;
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 33px;
    max-width: 70%;

    color: #21252c;
    margin-bottom: 3rem;
}

#kc-content {
    width: 100%;

    display: flex;
    flex-direction: column;
}

#kc-attempted-username {
    font-size: 20px;
    font-family: inherit;
    font-weight: normal;
    padding-right: 10px;
}

#kc-username {
    text-align: center;
    margin-bottom: -10px;
}

#kc-webauthn-settings-form {
    padding-top: 8px;
}

#kc-epo-sc-register-form {
    width: 50%;
}

#kc-form-wrapper {
    margin-top: 10px;
}

#kc-info {
    margin: 20px -40px -30px;
}

#kc-info-wrapper {
    font-size: 13px;
    padding: 15px 35px;
    background-color: #f0f0f0;
}

#kc-form-options span {
    display: block;
}

#kc-form-options .checkbox {
    margin-top: 0;
    color: #72767b;
}

#kc-terms-text {
    margin-bottom: 20px;
}

#kc-registration {
    margin-bottom: 0;
}

/* TOTP */

.required {
    color: #a30000; /* default - IE compatibility */
    color: var(--pf-global--danger-color--200);
}

ol#kc-totp-settings {
    margin: 0;
    padding-left: 20px;
}

ul#kc-totp-supported-apps {
    margin-bottom: 10px;
}

#kc-totp-secret-qr-code {
    max-width: 150px;
    max-height: 150px;
}

#kc-totp-secret-key {
    background-color: #fff;
    color: #333333;
    font-size: 16px;
    padding: 10px 0;
}

/* OAuth */

#kc-oauth h3 {
    margin-top: 0;
}

#kc-oauth ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#kc-oauth ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    padding: 10px 0;
}

#kc-oauth ul li:first-of-type {
    border-top: 0;
}

#kc-oauth .kc-role {
    display: inline-block;
    width: 50%;
}

/* Code */
#kc-code textarea {
    width: 100%;
    height: 8em;
}

/* Social */
.kc-social-links {
    margin-top: 20px;
}

.kc-social-provider-logo {
    font-size: 23px;
    width: 30px;
    height: 25px;
    float: left;
}

.kc-social-gray {
    color: #737679; /* default - IE compatibility */
    color: var(--pf-global--Color--200);
}

.kc-social-item {
    margin-bottom: 0.5rem; /* default - IE compatibility */
    margin-bottom: var(--pf-global--spacer--sm);
    font-size: 15px;
    text-align: center;
}

.kc-social-provider-name {
    position: relative;
    top: 3px;
}

.kc-social-icon-text {
    left: -15px;
}

.kc-social-grid {
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 5px;
    grid-column-end: span 6;
    --pf-l-grid__item--GridColumnEnd: span 6;
}

.kc-social-grid .kc-social-icon-text {
    left: -10px;
}

.kc-login-tooltip {
    position: relative;
    display: inline-block;
}

.kc-social-section {
    text-align: center;
}

.kc-social-section hr {
    margin-bottom: 10px;
}

.kc-login-tooltip .kc-tooltip-text {
    top: -3px;
    left: 160%;
    background-color: black;
    visibility: hidden;
    color: #fff;

    min-width: 130px;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    padding: 5px;

    position: absolute;
    opacity: 0;
    transition: opacity 0.5s;
}

/* Show tooltip */
.kc-login-tooltip:hover .kc-tooltip-text {
    visibility: visible;
    opacity: 0.7;
}

/* Arrow for tooltip */
.kc-login-tooltip .kc-tooltip-text::after {
    content: ' ';
    position: absolute;
    top: 15px;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

@media (min-width: 768px) {
    #kc-container-wrapper {
        position: absolute;
        width: 100%;
    }

    .login-pf .container {
        padding-right: 80px;
    }

    #kc-locale {
        display: none;
        position: relative;
        text-align: right;
        z-index: 9999;
    }
}

@media (max-width: 767px) {
    .login-pf body {
        background: white !important;
    }

    #kc-header {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 3rem;
        float: none;
        text-align: left;
    }

    #kc-header-wrapper {
        font-size: 16px;
        font-weight: bold;
        padding: 20px 60px 0 0;
        color: #72767b;
        letter-spacing: 0;
    }

    div.kc-logo-text {
        margin: 0;
        width: 150px;
        height: 32px;
        background-size: 100%;
    }

    #kc-form {
        float: none;
    }

    #kc-info-wrapper {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background-color: transparent;
    }

    .login-pf .container {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    #kc-locale {
        display: none;
        position: absolute;
        width: 200px;
        top: 20px;
        right: 20px;
        text-align: right;
        z-index: 9999;
    }
}

@media (min-height: 646px) {
    #kc-container-wrapper {
        bottom: 12%;
    }
}

@media (max-height: 645px) {
    #kc-container-wrapper {
        padding-top: 50px;
        top: 20%;
    }
}

.card-pf form.form-actions .btn {
    float: right;
    margin-left: 10px;
}

#kc-form-buttons {
    margin-top: 20px;
}

.login-pf-page1 {
    margin-top: 20px;
    top: 15%;
    position: absolute;
}

.login-pf-brand {
    margin-top: 20px;
    max-width: 360px;
    width: 40%;
}

/* Internet Explorer 11 compatibility workaround for select-authenticator screen */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .select-auth-box-parent {
        border-top: 1px solid #f0f0f0;
        padding-top: 1rem;
        padding-bottom: 1rem;
        cursor: pointer;
    }

    .select-auth-box-headline {
        font-size: 16px;
        color: #06c;
        font-weight: bold;
    }

    .select-auth-box-desc {
        font-size: 14px;
    }

    .pf-l-stack {
        flex-basis: 100%;
    }
}

/* End of IE11 workaround for select-authenticator screen */

.select-auth-box-arrow {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.select-auth-box-icon {
    display: flex;
    flex: 0 0 2em;
    justify-content: center;
    margin-right: 1rem;
    margin-left: 3rem;
}

.select-auth-box-parent {
    border-top: 1px solid var(--pf-global--palette--black-200);
    padding-top: 1rem;
    padding-bottom: 1rem;
    cursor: pointer;
}

.select-auth-box-parent:hover {
    background-color: #f7f8f8;
}

.select-auth-container {
    padding-bottom: 0px !important;
}

.select-auth-box-headline {
    font-size: var(--pf-global--FontSize--md);
    color: var(--pf-global--primary-color--100);
    font-weight: bold;
}

.select-auth-box-desc {
    font-size: var(--pf-global--FontSize--sm);
}

.card-pf {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    background: transparent !important;
    margin-bottom: 0 !important;
    background: transparent !important;
    box-shadow: unset !important;
    padding: unset !important;
    border-top: none !important;
    margin: none !important;
}

/*phone*/
@media (max-width: 767px) {
    .login-pf-page .card-pf {
        max-width: none;
        margin-left: 11px;
        margin-right: 0;
        padding-top: 0;
        border-top: 0;
        box-shadow: 0 0;
        padding: 0;
    }

    .kc-social-grid {
        grid-column-end: 12;
        --pf-l-grid__item--GridColumnEnd: span 12;
    }

    .kc-social-grid .kc-social-icon-text {
        left: -15px;
    }
}

.login-pf-page .login-pf-signup {
    font-size: 15px;
    color: #72767b;
}

#kc-content-wrapper .row {
    margin-left: 0;
    margin-right: 0;
}

.login-pf-page.login-pf-page-accounts {
    margin-left: auto;
    margin-right: auto;
}

.login-pf-page .btn-primary {
    margin-top: 0;
}

.login-pf-page .list-view-pf .list-group-item {
    border-bottom: 1px solid #ededed;
}

.list-view-pf-description {
    width: 100%;
}

#kc-form-login div.form-group:last-of-type,
#kc-register-form div.form-group:last-of-type,
#kc-update-profile-form div.form-group:last-of-type {
    margin-bottom: 0px;
}

.no-bottom-margin {
    margin-bottom: 0;
}

#kc-back {
    margin-top: 5px;
}

.topnav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    margin: 0px 16px 0px 24px;
    width: 400;
    padding: 8px;
    position: absolute;
    top: 0;
    left: 0;
}

.vertical-line {
    border-left: 2px #D9DDE3;
    height: 55px;
}

.topnav-title {
    margin-left: 24px;
}

.footer {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    height: 50px;
    width: 100%;
    background-color: white;
    color: black;
    padding: 24px;
    margin-top: 100px;
    text-align: left;
    position: absolute;
    bottom: 0;
}

.parentDiv {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    align-items: center;
    position: relative;
}

.kcContentWrapper {
    width: 370px;
}

.loginBtn {
    width: 100%
}

.noteUsername {
    color: #677289;
    font-size: 16px;
}

.registrationHelpTooltip {
    cursor: pointer;
    width:20px;
    height:20px;
}

/*From here theming changes for NL*/

body {
    background: #f5f6f7 !important;
    height: auto !important;
}

.Logo {
    width: 100%;
    border-bottom: 4px solid #007bc7;
    padding: 0;
    box-shadow: 0 2px 0 #7cb1d2;
    text-align:center
}

.Logo a {display:inline-block;}

.parentDiv {
    background: #ffffff;
    width: 992px;
    height: auto !important;
    padding: 0 1rem;
}

.card-pf {
    margin: 0 !important;
    width: 100%;
}

.login-pf-page {background:#ddeff8; padding:2rem; margin:0 0 1rem 0; border-radius:0.25rem}
.login-pf-page-header {
    margin: 0 !important;
    padding: 0 0 0.5rem 0 !important;
    border-bottom: 1px solid #0dcaf0 !important;
}

.login-pf-page-header h1 {
    margin: 0 !important;
    padding: 0 0 0.5rem 0 !important;
    font-size: 1.125rem !important;
    line-height: 1.5rem !important;
}

.login-pf-header h1 {
    margin: 0 !important;
    padding: 0 0 0.5rem 0 !important;
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}

.login-pf-header h2 {
    margin: 0 !important;
    padding: 0 0 0.5rem 0 !important;
    font-size: 0.875rem !important;
    line-height: 1.5rem !important;
}

.login-pf-page form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100% !important;
    padding: 1rem 0 8rem 0;
}

.login-pf-page form .wrapper {
    width: 50%;
    padding: 0 2rem 0.5rem 2rem;
}

.pc-input:focus + .pc-label,
.pc-input:read-only + .pc-label,
.pc-input:not(:placeholder-shown) + .pc-label {
    top: -25px;
    left: 2rem;
}

.pc-label {color:#282828;}

.pc-label::after,
.pc-label::before,
.pc-input:focus + .pc-label::before,
.pc-input:focus + .pc-label::after{
    background: transparent;
}


.pc-input,
textarea {
    padding: 0.55rem;
    border: 1px solid #007bc7;
    border-radius:0.75rem;
}

.pc-input:focus,
textarea:focus{
    outline: none;
    box-shadow: 0 0 4px 2px #89cfdd;
}

textarea {
    width: 100% !important;
    height: 100px !important
}

.pf-c-button.pf-m-primary {
    background: #007bc7;
    border: 1px solid #007bc7;
}

.pf-c-button.pf-m-primary:hover,
.pf-c-button.pf-m-primary:focus {
    background: #0069a9;
    border: 1px solid #0069a9;
}

.OptionsWrapper {
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.OptionsWrapper h2 {
    margin-bottom: 1rem;
}

.footer {
    position: relative;
    box-shadow: none;
}

@media (max-width: 991px) {
    .parentDiv {
        width: calc(100% - 20px);
    }
}

/*END of theming changes*/

