@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

:root {
    --keycloak-logo-url: url('../img/logo-cop.svg');
    --keycloak-logo-height: 110px;
    --keycloak-logo-width: 95px;
    --pf-v5-c-form-control--BackgroundColor:#eee;
    --pf-v5-global--FontFamily--heading:'Roboto Condensed',sans-serif;
    --pf-v5-global--FontFamily--text:'Roboto Condensed',sans-serif;
    --pf-v5-global--FontFamily--heading--vf:'Roboto Condensed',sans-serif;
    --pf-v5-global--FontFamily--text--vf:'Roboto Condensed',sans-serif;
}

.pf-v5-c-login{
    background:url('../img/watermark.svg') no-repeat center center;
}


.pf-v5-c-login__container {
    grid-template-columns: 34rem;
    grid-template-areas: "header"
                         "main"
}

.login-pf body {
    background-size: cover;
    height: 100%;
    background: linear-gradient(-45deg,  #aaa 0%,#ffffff 100%);
}

div.kc-logo-text {
    background-image: var(--keycloak-logo-url);
    height: var(--keycloak-logo-height);
    width: var(--keycloak-logo-width);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
}

div.kc-logo-text span {
    display: none;
}

.kc-login-tooltip {
    position: relative;
    display: inline-block;
}

.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;
}

#kc-recovery-codes-list {
    columns: 2;
}

#certificate_subjectDN {
    overflow-wrap: break-word
}

#kc-header-wrapper {
    font-size: 29px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2em;
    white-space: normal;
    color: var(--pf-v5-global--Color--light-100) !important;
    text-align: center;
}

hr {
    margin-top: var(--pf-v5-global--spacer--sm);
    margin-bottom: var(--pf-v5-global--spacer--md);
}

@media (min-width: 768px) {
    div.pf-v5-c-login__main-header {
        grid-template-columns: 70% 30%;
    }
}

.pf-v5-c-login__main{
    background:#fff;
    box-shadow:0 5px 5px 0 rgba(0,0,0,0.1);
    border-radius:5px;
    color:#000;
}
.pf-v5-c-form-control{
    background:#fff;
}

.pf-v5-c-form-control>:is(input,select,textarea){
    color:#000 !important;
}

.pf-v5-c-form-control input:focus{
    outline:none;
}

.pf-v5-c-button.pf-m-control{
    background:#fff;
    color:#000;   
}
