/* Prevent row layout on large screens */
@media (min-width: 1200px) {
  .pf-v5-c-login__container {
    display: block;
  }
}

/* Prevent vertical centering of the login form */
.pf-v5-c-login {
  align-items: unset;
}

/* Center the login form horizontally and determine its max size */
.pf-v5-c-login__main {
  max-width: min(500px, 90%);
  margin: 0 auto;

  .pf-v5-c-login__main-header {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    gap: 10px;

    #kc-page-title {
      /* Put language switch on top of the title */
      order: 2;
    }

    --pf-v5-c-login__main-header--PaddingTop: 20px;
    padding-block-start: var(--pf-v5-c-login__main-header--PaddingTop);

    .pf-v5-c-login__main-header-utilities {
      align-self: end;

      /* Hide language selector on mobile. */
      @media (max-width: 768px) {
        display: none;
      }
    }
  }

  .pf-v5-c-login__main-footer {
    /* Center the footer content */
    justify-content: center;
  }

  .pf-v5-u-mt-md-on-md {
    margin-block-start: var(--pf-v5-global--spacer--md) !important;
  }
}
