@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");

/* HTML */
.login-pf {
  --color-primary: #095797;
  --color-default: #007bc7;
  --color-secondary: #fff;
  --color-white: #fff;
  --color-text: rgba(51, 51, 51, 1);
  --color-text-title: #223654;
  --color-secondary-text: #00579c;
  --color-pale-text: rgba(0, 0, 0, 0.55);
  --color-gray-text: #808080;
  --color-interactive-text: var(--color-default);
  --color-interactive-text-on-bg: var(--color-secondary);
  --color-outline: #d6e2ef;
  --color-disabled: #e5e5e5;
  --color-disabled-text: var(--grey-medium-26);
  --color-danger: #d00025;
  --color-red-light: #fc4061;
  --color-red-extra-light: #fbe6e9;
  --color-warning: #faad14;
  --color-success: #009e45;
  --color-green-forest-extra-light: #f2faf5;
  --color-green-forest-dark: #00662d;
  --color-success-over: #007533;
  --color-gouv-qc: #095797;
  --color-gouv-qc-dark: #223654;
  --color-gouv-qc-light: #d6e2ef;
  --color-gouv-qc-extra-light: #ecf6fd;
  --color-blue-quebec-light: #43b7ff;
  --color-blue-quebec-medium-light: #0b72b2;
  --color-blue-sky-light: #abeaff;
  --color-blue-sky-extra-light: #ecf6fd;
  --color-blue-quebec-dark: #074578;
  --color-app-bg: #fff;

  --color-link: #007bc7;

  --icon-color: var(--color-secondary-text);
  --icon-color-light: var(--color-blue-quebec-light);
  --icon-color-accent: var(--color-red-light);
  --icon-color-warning: #ffa91a;
  --icon-color-warning-dark: #664000;

  --grey-disabled: #424242;
  --grey-medium-26: #424242;
  --grey-medium-39: #636363;
  --grey-extra-light-77: #c5c5c5;
  --gray-extra-light-90: #e5e5e5;
  --grey-disabled-light: #d6d6d6;
  --grey-disabled-dark: #949494;

  --blue-azure-medium: #00aeab;

  /* Colors - variants */
  --color-primary-extra-dark: #223654;
  --color-primary-dark: #074578;
  --color-primary-medium: #0b72b2;
  --color-primary-light: #43b7ff;
  --color-primary-extra-light: #abeaff;
  --color-primary-background: #ecf6fd;
  --color-default-dark: #00579c;
  --color-secondary-dark: #abeaff;
  --color-outline-dark: #66d9ff;
  --color-danger-dark: #7d091e;

  --color-primary-light: rgba(49, 126, 48, 0.9);
  --color-default-light: rgba(0, 123, 199, 0.9);
  --color-secondary-light: rgba(171, 234, 255, 0.5);
  --color-outline-light: rgba(0, 0, 0, 0.02);
  --color-danger-light: rgba(208, 0, 37, 0.9);
  --color-interactive-text-light: #43b7ff;

  --color-default-background: rgba(214, 239, 255, 1);
  --color-secondary-background: #fafafa;

  --color-danger-pale: rgba(208, 0, 37, 0.05);
  --color-danger-pale-dark: rgba(208, 0, 37, 0.08);

  --color-default-shadow: rgba(21, 57, 86, 0.2);
  --color-warning-shadow: rgba(250, 173, 20, 0.2);
  --color-danger-shadow: rgba(255, 77, 79, 0.2);

  /* Spacing */
  --padding-tiny: 4px;
  --padding-small: 8px;
  --padding-medium: 16px;
  --padding-large: 24px;
  --padding-huge: 32px;

  /* Fonts */
  --font-family: "Roboto", sans-serif;
  --font-family-secondary: "Open Sans", sans-serif;
  --font-size: 18px;
  --font-size-medium: 16px;
  --font-size-small: 14px;
  --font-size-tiny: 12px;
  --font-weight-input: 300;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;

  /* Heading */
  --font-size-h1: 40px;
  --font-size-h2: 32px;
  --font-size-h3: 24px;
  --font-size-h4: 20px;
  --font-size-h5: 18px;

  /* Animations */
  --transition-duration-small: 200ms;
  --transition-duration-medium: 300ms;
  --transition-duration-long: 400ms;

  /* Border-radius */
  --border-radius-btn: 28px;
  --border-radius-input: 6px;
  --border-radius-box: 4px;

  /* Fonts */
  --pf-global--FontFamily--sans-serif: "Open Sans", Helvetica, Arial, sans-serif;
  --pf-global--FontFamily--heading--sans-serif: "Open Sans", Helvetica, Arial, sans-serif;

  min-width: 300px;
  min-height: 400px;
}
.login-pf a:hover {
  color: #00579c;
}
/* BODY */
.login-pf body {
  background: var(--color-blue-sky-extra-light);
  background-size: cover;
  height: auto;
  width: 100%;
  font-size: 12px;
  line-height: 1.66666667;
}

.login-pf h2 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.visuallyhidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* PAGE HEADER */
.app-header {
  background: var(--color-gouv-qc);
  font-family: var(--font-family);
  line-height: inherit;
  padding: 0 var(--padding-large);
  width: 100%;
  color: var(--color-white);
  min-height: 5rem;
  display: flex;
  flex-direction: column;
}

.local .app-header {
  background-color: rgb(38, 166, 154);
}
.development .app-header {
  background-color: rgb(56, 142, 60);
}
.staging .app-header {
  background-color: rgb(255, 138, 101);
}
.acceptation .app-header {
  background-color: rgb(244, 67, 54);
}
.formation .app-header {
  background-color: rgb(255, 143, 0);
}

.app-header h1 {
  margin: var(--padding-small) 0;
  padding: 0;
  color: var(--color-white);
  font-weight: normal;
  font-size: 16px;
}

.app-header .wrapper > a.gerudo-link,
.app-header .wrapper > a:active.gerudo-link,
.app-header .wrapper > a:hover.gerudo-link {
  position: static;
  background: transparent;
  color: var(--color-white);
  padding: var(--padding-small) 0 0 0;
}

.app-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  z-index: 200;
}

.app-header .primary-content,
.app-header .secondary-content {
  height: 100%;
}

.app-header .primary-content {
  align-items: center;
  display: flex;
}

.app-header .secondary-content {
  padding-right: 0;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.app-header .wrapper > .anticon-menu svg {
  color: var(--color-white);
}

.app-header a:focus {
  outline: var(--color-white) 2px solid;
}

.app-header button:focus {
  outline: var(--color-white) 2px solid;
  box-shadow: none;
}

@media all and (max-width: 27rem) {
  .app-header {
    padding: 5px var(--padding-medium);
  }

  .app-header .wrapper > .primary-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-header .wrapper > .secondary-content {
    align-items: flex-start;
  }

  .app-header .menu-burger {
    margin-top: 30px;
  }
}

/* CARD */
.kc-page-title {
  background-color: var(--color-gouv-qc-dark);
  border-radius: var(--border-radius-input) var(--border-radius-input) 0 0;
  color: var(--color-white);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  margin: 0;
  padding: 17.5px var(--padding-medium);
  text-align: center;
}

.login-pf-page-header {
  background: var(--color-gouv-qc);
}
@media (max-width: 420px) {
  .login-pf-page-header {
    /* position: absolute; */
    top: 0px;
    left: 0px;
    height: 98px;
    right: 0px;
    overflow: hidden;
  }
}

/* FORM - label */
.login-pf .form-group label {
  color: var(--grey-medium-39);
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-tiny);
  font-weight: var(--font-weight-bold);
  padding: 0 0 var(--padding-tiny) 0;
}
/* FORM - button */
.pf-m-primary {
  background: var(--color-primary-medium);
  border: 1px solid var(--color-primary-medium);
  color: var(--color-secondary);
  border-radius: var(--border-radius-btn);
  cursor: pointer;
  display: inline-block !important;
  font-family: var(--font-family-secondary);
  font-weight: var(--font-weight-semi-bold);
  outline: none;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition-duration-small) ease-out,
    border-color var(--transition-duration-small) ease-out;
  user-select: none;
  white-space: nowrap;
}
.pf-m-primary:hover,
.kc-social-item:hover,
.pf-m-primary:active,
.kc-social-item:active,
.pf-m-primary:focus,
.kc-social-item:focus {
  background: var(--color-primary-dark);
  border: 1px solid var(--color-primary-dark);
}

#kc-reset-password {
  font-size: 14px;
  line-height: 24px;
  margin-top: 32px;
}

.instruction {
  font-size: 16px;
}

a {
  color: var(--color-primary);
  font-weight: normal;
}

.skip-to-content:focus {
  text-decoration: none;
  padding: var(--padding-small) !important;
}

/*IE compatibility*/
.pf-c-form__helper-text.pf-m-error:not(.show-long) .long {
  display: none;
}
.pf-c-form__helper-text.pf-m-error.show-long {
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 14px;
}
.pf-c-form__helper-text.pf-m-error.show-long .short {
  display: none;
}

.pf-c-form-control {
  background-color: #fff;
  background-image: none;
  border-radius: var(--border-radius-input);
  border: 1px solid #d9d9d9;
  box-sizing: border-box;

  color: rgba(0, 0, 0, 0.85);
  display: inline-block;
  font-family: var(--font-family);
  font-feature-settings: "tnum";

  font-size: var(--font-size-medium) !important;
  font-weight: var(--font-weight-input);
  font-family: var(--font-family);

  margin: 0;
  padding: 6.5px 11px;

  position: relative;
  transition: all 0.3s;
  width: 100%;
}
.pf-c-form-control:hover,
.pf-c-form-control:focus {
  background-color: #fff;
  background-image: none;
  border-radius: var(--border-radius-input);
  border: 1px solid #d9d9d9;
  box-sizing: border-box;

  color: #757575;
  display: inline-block;
  font-family: var(--font-family);
  font-feature-settings: "tnum";

  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-input);
  font-family: var(--font-family);

  margin: 0;
  padding: 6.5px 11px;

  position: relative;
  transition: all 0.3s;
  width: 100%;
  border-color: var(--color-default);
}
.pf-c-form-control[aria-invalid="true"] {
  border-color: var(--color-danger);
  border-bottom-width: 1px;
}

.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: #fff;
  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 {
  line-height: 100%;
  margin-bottom: 32px;
  min-width: 48px;
  outline: none;
  top: 32px;
  background: #009e45;
  border: 1px solid #009e45;
  padding: 16px 24px;
  font-size: 16px;
  border-radius: 28px;
}
.pf-c-button:hover {
  background: #00662d;
}
/* default - IE compatibility */
.pf-m-primary {
  color: #fff;
  background-color: #0066cc;
  background-color: var(--pf-global--primary-color--100);
  border: 1px solid #0066cc;
}
.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*/

.kc-current-locale {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

#kc-current-locale-link {
  margin-right: 8px;
  width: 100%;
}

#kc-locale .locale-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  list-style: none;
  right: 0;
  top: 20px;
  min-width: 100px;
  padding: 2px 0;
  border: solid 1px #bbb;
}

#kc-locale:hover .locale-menu,
#kc-locale .locale-menu.open {
  display: block;
  margin: 0;
  z-index: 100;
}

#kc-locale ul li a {
  display: block;
  padding: 5px 14px;
  color: #000 !important;
  text-decoration: none;
  line-height: 20px;
  font-size: var(--font-size-small);
}

#kc-locale ul li a:hover,
#kc-locale ul li a:active,
#kc-locale ul li a:focus {
  color: #4d5258;
  background-color: #d4edfa;
}

#kc-locale-dropdown a {
  color: #fff;
  background: 0 0;
  font-weight: 300;
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-small);
  display: block;
}
@media (min-width: 350px) {
  #kc-locale-dropdown a {
    padding: 0;
  }
}

#kc-locale-dropdown a:hover,
#kc-locale-dropdown a:active {
  text-decoration: underline;
  outline: rgba(0, 0, 0, 0.2);
}


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

#kc-logo {
  width: 100%;
}

#kc-logo-wrapper {
  background-image: url(../img/keycloak-logo-2.png);
  background-repeat: no-repeat;
  height: 63px;
  width: 300px;
  margin: 62px auto 0;
}

div.kc-logo-text {
  background-image: url(../img/keycloak-logo-text.png);
  background-repeat: no-repeat;
  height: 63px;
  width: 300px;
  margin: 0 auto;
}

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

@media (max-width: 420px) {
  .login-pf-page .login-pf-page-header {
    margin-bottom: 0;
  }

  .kc-page-title {
    border-radius: 0;
  }
}

/* CONTENT */
.body-slider {
  width: 100%;
  position: relative; 
  top: -50px;
  left: 0px;
  right: 0px;
  height: 100%;
}

#kc-header-wrapper {
  font-size: 29px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2em;
  padding: 62px 10px 20px;
  white-space: normal;
}

#kc-header {
  position: relative;
  width: 100%;
}

#portal-switcher {
  position: relative;
  z-index: 100;
  display: block;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  text-align: right;
  color: #0b72b2;
  padding: 0 var(--padding-large);
  min-width: 370px;
}

#portal-switcher .wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  padding-top: 24px;
}

#portal-type-root .switcher-psss,
#portal-type-root .switcher-platform {
  display: none;
}

.is-login #portal-type-root.psss .switcher-psss,
.is-login #portal-type-root.platform .switcher-platform {
  display: inherit;
}

.is-login #header-switcher {
  margin: 0 auto;
  width: 420px;
}

.is-login #header-switcher h2 {
  font-family: var(--font-family-secondary);
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 33px;
  color: #082244;
}

#browser-warning {
  font-size: 14px;
}
#browser-warning ul {
  list-style: circle;
}

.kc-content {
  width: 100%;
  padding: 0 var(--padding-huge) var(--padding-huge) var(--padding-huge);
}

#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-content-wrapper {
  margin-top: 0;
}

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

#kc-info {
  margin: 20px -32px -32px;
}

#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 */

.subtitle {
  text-align: right;
  margin-top: 30px;
  color: #909090;
}

.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: 16px;
  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-providers {
  margin-bottom: 20px;
}

#kc-social-providers h4 {
  display: flex;
  margin: 16px 0;
  color: #000000d9;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  border-top: 0;
  border-top-color: rgba(45, 82, 155, 0.5);
}

#kc-social-providers h4 span {
  display: inline-block;
  padding: 0 1em;
}

#kc-social-providers h4::before {
  position: relative;
  top: 50%;
  width: 50%;
  border-top: 1px solid transparent;
  border-top-color: inherit;
  border-bottom: 0;
  transform: translateY(50%);
  content: "";
}
#kc-social-providers h4::after {
  position: relative;
  top: 50%;
  width: 50%;
  border-top: 1px solid transparent;
  border-top-color: inherit;
  border-bottom: 0;
  transform: translateY(50%);
  content: "";
}

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

.login-pf a.kc-social-item {
  background: #fff;
  border: 1px solid var(--color-primary-medium);
  color: #636363;
  border-radius: var(--border-radius-btn);
  cursor: pointer;
  font-family: var(--font-family-secondary);
  font-weight: var(--font-weight-semi-bold);
  line-height: 3em;
  display: block;
  width: 100%;
  margin: 8px 0;
  font-size: 16px;
  text-align: center;
  position: relative;
}

.login-pf a.kc-social-item:hover,
.login-pf a.kc-social-item:active,
.login-pf a.kc-social-item:focus {
  text-decoration: none;
  background: #ecf6fd;
}

.kc-social-provider-logo {
  font-size: 23px;
  width: 30px;
  height: 25px;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translate(0, -50%);
}

.kc-social-provider-logo.icon-microsoft {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkgMEgwVjlIOVYwWiIgZmlsbD0iI0YyNTAyMiIvPgo8cGF0aCBkPSJNOSAxMEgwVjE5SDlWMTBaIiBmaWxsPSIjMDBBNEVGIi8+CjxwYXRoIGQ9Ik0xOSAwSDEwVjlIMTlWMFoiIGZpbGw9IiM3RkJBMDAiLz4KPHBhdGggZD0iTTE5IDEwSDEwVjE5SDE5VjEwWiIgZmlsbD0iI0ZGQjkwMCIvPgo8L3N2Zz4K")
    no-repeat;
  width: 19px;
  height: 19px;
}

.kc-social-provider-logo.icon-okta {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTEiIGN5PSIxMSIgcj0iOCIgc3Ryb2tlPSIjMDA3RkM5IiBzdHJva2Utd2lkdGg9IjYiLz4KPC9zdmc+Cg==")
    no-repeat;
  width: 22px;
  height: 22px;
}

.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 {
    position: relative;
  }
}

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

  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 {
    position: relative;
  }

  #kc-logo-wrapper {
    background-size: 100px 21px;
    height: 21px;
    width: 100px;
    margin: 20px 0 0 20px;
  }
}

@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-page {
  padding-top: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--color-blue-sky-extra-light);
  width: 100%;
  min-height: 100vh;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.login-pf-page-header {
  flex-shrink: 0;
}
.card-pf {
  flex-grow: 1;
  overflow: auto;
  min-height: 2em;
}

.login-pf-page .login-pf-brand {
  margin-top: 0;
  max-width: 100%;
  width: 100%;
}
.login-pf-page .card-pf {
  padding: 0;
  margin-top: 20px;
}

a.help {
  display: block;
  width: 420px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 56px;
}

#portal-type-root.psss a.help[data-portal="platform"],
#portal-type-root.platform a.help[data-portal="psss"] {
  display: none;
}


/* 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);
}

.pf-c-alert.pf-m-danger.pf-m-inline {
  margin-bottom: 2em;
}

.card-pf {
  background-color: var(--color-white);
  border-radius: var(--border-radius-input);
  border: none;
  box-shadow: 4px 4px 16px 0 var(--color-default-shadow);
  display: flex;
  flex-direction: column;
  height: auto;
  margin: 0 auto;
  width: 420px;
}
@media (max-width: 420px) {
  .card-pf {
    border-radius: 0;
    width: 100%;
  }
}

@media (max-height: 400px) {
  .card-pf {
    height: 540px;
    margin: 30px auto 0;
  }
}

.gerudo-footer {
  background-color: #fff;
  flex-shrink: 0;
  padding: 24px;
  text-align: center;
  width: 100%;
  bottom: 0;
}

@media (max-height: 420px) {
  .gerudo-footer {
    /* position: relative !important; */
    bottom: 0;
  }
}

@media (max-width: 420px) {
  .gerudo-footer {
    height: 142px;
    left: 0px;
    right: 0px;
    overflow: hidden;
  }
}

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

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

  .kc-social-grid .kc-social-icon-text {
    left: -15px;
  }
}
@media (max-height: 420px) {
  .login-pf-page {
    height: 100% !important;
  }
  .login-pf-page .card-pf {
    height: max-content;
  }
}

.login-pf-page .login-pf-signup {
  font-size: 15px;
  color: #363636;
}
.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;
}

.login-pf-page .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;
}
.form-group {
  margin-bottom: 0;
}
.form-group:not(:first-of-type) label {
  margin-top: 32px;
}
.no-bottom-margin {
  margin-bottom: 0;
}

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