body{
  --prov-logo-margin:16px;
}


#kc-page-title{
  font-weight: bold;
  font-family: 'Work Sans', sans-serif;
  font-size: 36px;

  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 12px;
}
#kc-page-title i:first-child {
  width:40px;
  height:40px;
  background-size: 40px;
  /*setting color in different way is not working for svg that are imprted as background-image, if you want to change color by "color" parameter then you will need copy full svg content into html but then we will have to add it manually in every place*/
  /*if you want ot change color then use this website to get correct filter value: https://codepen.io/sosuke/pen/Pjoqqp*/
  filter: invert(32%) sepia(79%) saturate(2694%) hue-rotate(195deg) brightness(104%) contrast(105%);
}
h1#kc-page-title{
  width:100%;
  margin: 0 auto;
}
.pf-c-form__helper-text{
  font-size: var(--helper-font-size);
}
.login-pf-page .login-pf-header{
  margin:0;
}
.login-pf-header{
  padding-bottom:  var(--vertical-card-padding);
  margin: 0;
  gap:20px;
}
p{
  margin:0;
}
p + p{
  margin-top:10px;
}
a{
  color:var(--default-text-color);
  text-decoration: underline;
}
a:focus{
  outline:unset;
}
div.anchor-div{
  border-bottom: 1px solid var(--default-text-color);
}
div.anchor-div:has(a:hover){
  border-width:2px;
}
div.anchor-div a:hover{
  text-decoration:none;
  color:var(--default-text-color);
  font-weight: 700;
}
div.anchor-div  a{
  text-decoration:unset
}

/*providers list style*/
.kc-social-provider-logo{
  background-repeat: no-repeat;
  background-size: contain;
  height: var(--prov-logo-size);
  width:var(--prov-logo-size);
  align-self:end;
}
.kc-social-provider-logo{
  margin-right:var(--prov-logo-margin);
}
.kc-social-item {
  text-align: center;
  line-height: var(--prov-logo-size);
  text-decoration:unset;
}
.kc-social-section hr {
  margin-bottom:0;
  margin-top:0;
}
.kc-social-section li{
  text-align: left;
}
.pretend-icon-before-comp{
  margin-left: calc(var(--prov-logo-margin) + var(--prov-logo-size));
}


.pf-c-alert{
  border-radius: 4px;
}
.pf-c-alert.pf-m-danger{
  --pf-c-alert--m-inline--BackgroundColor:transparent;
}

.input-fields-layout{
  display: flex;
  flex-direction: column;
  gap: var(--default-vertical-gap);
}

.pf-c-alert{
  border: 0;
}
.pf-c-alert.pf-m-success{
  background-color: unset;
  --pf-c-alert__title--Color:var(--default-positive-color);
}
.pf-c-alert__icon{
  display: none;
}
.pf-c-alert.pf-m-danger{
  background-color: unset;
  --pf-c-alert__title--Color:var(--default-negative-color);
}