@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
:root {
  --main-blue: #336fb2;
  --main-color: #0aa633;
  --main-text: #333333;
  --medium-text: #666666;
  --light-text: #888;
  --dark-green: #01bd8e;
  --light-green: #1cd3a5;
  --error-red: #f93232;
  --bg-color: #f9f9f9;
  --bg-gray: #bfbfbf;
  --stroke-gray: #dcdfe3;
  --white: #fff;
  --main-bg: #f3f6f9;
  --border-color: #bbbbbb;
  --color-btn-hover: #78c600;
  --focus-bg-color: #78c600;
  --link-color: #0aa633;
  --pf-c-alert__icon--MarginTop: 0.063rem;
  --pf-c-form-control--placeholder--Color: #ccced1;
  --main-gradient: linear-gradient(313deg, #0aa633 28%, #78c600 82.1%);
  --main-gradient-inverse: linear-gradient(313deg, #78c600 28%, #0aa633 82.1%);
}
/* 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. */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--main-bg) inset !important;
  /* -webkit-text-fill-color: white !important; */
}
*::selection {
  color: white;
  background-color: var(--color-btn-hover);
}
.login-pf-page {
  padding-top: 0;
  padding-bottom: 40px;
  padding-left: 16px;
  padding-right: 16px;
}
a {
  color: var(--main-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover,
a:focus {
  color: var(--color-btn-hover);
}
a:focus {
  outline: none;
}
.login-pf {
  background: none;
}

.login-pf body {
  background: var(--main-bg) url("../img/background-asop.svg") no-repeat center
    center fixed;
  font-family: "SF Pro Display", Helvetica, Arial, sans-serif;
  background-size: cover;
  color: var(--main-text);
  font-size: 16px;
  height: 100%;
}
/* #kc-header {
  visibility: hidden;
} */

.pf-c-alert {
  border: none;
  background: var(--main-bg);
  border-radius: 12px;
  color: var(--medium-text);
  padding: 16px;
  margin-bottom: 16px;
}
.pf-c-alert.pf-m-danger {
  border: none;
  margin-bottom: 16px;
}
#kc-header-logo {
  position: relative;
  text-align: center;
  padding-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
#kc-header-logo::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -32px;
  width: calc(100% + 64px);
  height: 1px;
  border-bottom: 1px solid var(--stroke-gray);
}
#kc-header-logo > img {
  height: 40px;
}
#kc-page-title {
  font-weight: 600;
}

.pf-c-alert__title {
  color: var(--medium-text);
}
.pf-c-form__label {
  font-size: 14px;
  color: var(--medium-text);
}
.pf-c-form-control {
  border-radius: 12px;
  border: 1px solid var(--stroke-gray);
  background: none;
  padding: 10px 16px;
  font-size: 16px;
  height: auto;
  line-height: 1.3;
}
.pf-c-form-control:autofill {
  background: var(--focus-bg-color);
}
.pf-c-input-group {
  position: relative;
}
.pf-c-input-group > .pf-c-form-control {
  padding-right: 60px;
}
.pf-c-input-group .pf-c-button:after {
  border: none;
}
.pf-c-input-group .pf-c-button.pf-m-control {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  z-index: 100;
  border: none;
  padding: 12px 16px;
  color: var(--medium-text);
}
textarea.pf-c-form-control {
  height: auto;
}
.pf-c-form-control:not(textarea) {
  height: auto;
}
.pf-c-form-control:focus {
  border: 1px solid var(--main-color);
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 16px;
  border-radius: 12px;
}
.pf-c-form-control:focus-visible {
  outline: none;
  /* background: var(--focus-bg-color); */
}
.pf-c-alert__title {
  font-size: 1rem;
  font-weight: 400;
}
.checkbox input[type="checkbox"] {
  position: relative;
  margin-top: -2px;
  width: 20px;
  height: 20px;
  /* visibility: hidden; */
  -webkit-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  flex-shrink: 0;
}

.checkbox > label {
  /* position: relative; */
  color: var(--main-text);
  display: flex;
  align-items: center;
  padding-left: 24px;
  gap: 8px;
}
.pf-c-form-control[aria-invalid="true"] {
  background-image: none;
}

/* .checkbox > label::before { */
.checkbox input[type="checkbox"]::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--main-color);
  border-radius: 2px;
  z-index: 10;
}
.checkbox input[type="checkbox"]:checked::before {
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  background-position: 3px 4px;
  background-size: 14px;
}
p.instruction {
  margin: 5px 0;
}
.form-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}
#kc-form-buttons {
  margin-top: 16px;
}
.pf-c-button.pf-m-control {
  border-color: var(--main-color);
  color: var(--medium-text);
  text-decoration: none;
}
.pf-c-button {
  padding: 10px 16px;
  /* height: 48px; */
  font-size: 16px;
  border-radius: 12px;
  flex-basis: 50%;
  flex-grow: 1;
  text-align: center;
  line-height: 1.3;
  min-width: 100px;
}
.pf-c-button.pf-m-primary {
  background: var(--main-gradient);
  /* color: #fff; */
  color: var(--white);
  transition: all 0.4s;
}
.pf-c-button.pf-m-primary:hover {
  background: var(--main-gradient-inverse);
}
.pf-c-button.pf-m-primary:focus {
  border: none;
}
.code-wrapper {
  width: calc(50% - 8px);
  display: inline-block;
}
.code-wrapper:not(:last-child) {
  margin-right: 12px;
}
.btn-default {
  background: none;
  border: 1px solid var(--link-color);
  /* color: var(--main-blue); */
  color: var(--link-color);
}
.btn-default:hover {
  color: var(--color-btn-hover);
  border: 1px solid var(--color-btn-hover);
  background: none;
}
.nav-justified {
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.apb-enter.nav-justified > li > a {
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.nav-justified::before {
  content: none;
}
.nav-justified::after {
  content: none;
}
.nav-justified > li {
  flex-basis: calc(50% - 8px);
}
.nav-justified > li > a {
  text-decoration: none;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--medium-text);
  color: var(--medium-text);
  /* transition: all 0.4s; */
  transition: all 0.01s;
  line-height: 1.3;
  height: 100%;
}
.nav-justified > li.active > a,
.nav-pills > li.active > a {
  background: var(--main-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  border: none;
  padding: 8px;
  line-height: 1.3;
}
.nav-justified > li > a:hover {
  background: var(--main-gradient-inverse);
  color: var(--white);
}
.nav-justified > li.active > a:hover {
  background: var(--main-gradient-inverse);
  color: var(--white);
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:focus {
  color: var(--white);
  background-color: var(--main-color);
  outline: none;
}

.nav-pills > li.active > a:hover {
  background-color: var(--main-gradient-inverse);
  outline: none;
}
.apb-enter {
  padding: 0;
  border: none;
  border-radius: 14px;
}

.pf-c-button.pf-m-aria-disabled,
.pf-c-button.pf-m-disabled,
.pf-c-button:disabled {
  color: #fff;
  background-color: #58626d;
}
h1#kc-page-title {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 24px;
  color: var(--main-text);
}
#kc-locale {
  margin-left: auto;
  border: 1px solid var(--main-text);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--main-text);
  line-height: 1;
}
#kc-locale ul {
  background-color: var(--pf-global--BackgroundColor--100);
  display: none;
  top: calc(100% + 4px);
  min-width: 100px;
  width: 100%;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}
/* #kc-locale-dropdown {
  display: inline-block;
} */

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

#kc-locale-dropdown a {
  color: var(--pf-global--Color--200);
  text-align: left;
  font-weight: 600;
  font-size: var(--pf-global--FontSize--sm);
  text-decoration: none;
}
#kc-locale-dropdown a:focus {
  outline: none;
}
#kc-locale-dropdown a:hover {
  outline: none;
  background: var(--main-bg);
}
#kc-locale-dropdown a > img {
  width: 24px;
  margin-right: 4px;
}
#kc-locale-dropdown button {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  color: var(--main-text);
  text-align: right;
  font-size: 16px;
  font-weight: 660;
  position: relative;
}
#kc-locale-dropdown button::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}
#kc-locale-dropdown button > img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
button#kc-current-locale-link::after {
  /* content: "\2c5"; */

  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/shevron-down-dark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: var(--pf-global--spacer--xs);
}
.pf-c-dropdown__menu-item:focus,
.pf-c-dropdown__menu-item {
  background: none;
}
.login-pf .container {
  padding-top: 40px;
}

.login-pf a:hover {
  color: var(--color-btn-hover);
}
/* .send-code {
} */
#kc-logo {
  width: 100%;
}
.pf-c-alert__icon {
  margin-top: 0.3rem;
}
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;
}

#kc-header {
  color: #ededed;
  overflow: visible;
  white-space: nowrap;
  margin-bottom: 0;
}

#kc-header-wrapper {
  font-size: 29px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2em;
  padding: 16px 0;
  max-width: 500px;
  white-space: normal;
  text-align: right;
  margin: 0 auto;
}

#kc-content {
  width: 100%;
}

#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-form-webauthn .select-auth-box-parent {
  pointer-events: none;
}

#kc-form-webauthn .select-auth-box-desc {
  color: var(--pf-global--palette--black-600);
}

#kc-form-webauthn .select-auth-box-headline {
  color: var(--pf-global--Color--300);
}

#kc-form-webauthn .select-auth-box-icon {
  flex: 0 0 3em;
}

#kc-form-webauthn .select-auth-box-icon-properties {
  margin-top: 10px;
  font-size: 1.8em;
}

#kc-form-webauthn .select-auth-box-icon-properties.unknown-transport-class {
  margin-top: 3px;
}

#kc-form-webauthn .pf-l-stack__item {
  margin: -1px 0;
}

#kc-content-wrapper {
  margin-top: 20px;
}

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

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

#kc-info-wrapper {
  font-size: 16px;
  padding: 24px 33px;
  border-top: 1px solid var(--stroke-gray);
  background-color: transparent;
}

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

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

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

#kc-registration-terms-text {
  max-height: 100px;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 5px;
}

#kc-registration {
  margin-bottom: 0;
  color: var(--main-text);
}
.back-to-login {
  margin-top: 8px;
  text-align: center;
}
/* TOTP */

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

.required {
  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;
  font-weight: 600;
  color: var(--main-text);
  line-height: 1.5;
}

#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: 1rem;
  padding: 4px 0 4px 16px;
  color: var(--medium-text);
  position: relative;
  box-sizing: border-box;
  line-height: 1.5;
}
#kc-oauth ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--main-color);
}
#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;
  gap: 16px;
}
.apb-social-flex {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;
  /* gap: 8px; */
  gap: 16px;
}
.kc-social-links li {
  /* width: 100%; */
  flex-basis: calc(50% - 4px);
  flex-grow: 1;
  flex-shrink: 0;
}
.kc-social-links li > a {
  text-decoration: none;
}
.kc-social-provider-logo {
  font-size: 23px;
  width: 30px;
  height: 25px;
  float: left;
  margin-right: 16px;
}
.kc-social-links .pf-c-button:after {
  content: none;
}

.kc-social-gray {
  color: var(--pf-global--Color--200);
}

.kc-social-gray h2 {
  font-size: 1em;
}

.kc-social-item {
  padding: 7px 32px;
  margin-bottom: 0;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid var(--main-text);
  text-align: left;
  display: flex;
  align-items: center;
  line-height: 1;
}
.kc-social-item > img {
  width: 24px;
  border-radius: 50%;
  margin-right: 8px;
}
.kc-social-provider-name {
  position: relative;
  font-size: 16px;
}

.kc-social-icon-text {
  left: -15px;
}
/* .apb-social-item {
  padding: 8px 32px;
  margin-bottom: 0;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid var(--main-text);
  text-align: left;
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-basis: calc(50% - 4px);
  flex-grow: 1;
  flex-shrink: 0;
}
.apb-social-item:hover {
  text-decoration: none;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.apb-social-item > img {
  width: 24px;
  border-radius: 50%;
  margin-right: 8px;
}
.apb-social-item .kc-social-provider-name {
  color: var(--medium-text);
}
.apb-social-item:hover .kc-social-provider-name {
  color: var(--main-color);
} */
.apb-social-item {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}
.apb-social-item > img {
  width: 40px;
  border-radius: 50%;
}
.apb-social-item .kc-social-provider-name {
  display: none;
}

.kc-social-grid {
  display: grid;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  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;
}
.social-title {
  position: relative;
}
.social-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--stroke-gray);
}
.social-title > span {
  position: relative;
  background: #fff;
  padding-left: 4px;
  padding-right: 4px;
  z-index: 1;
}
.kc-login-tooltip .kc-tooltip-text {
  /* top: -3px;
  left: 160%; */
  top: 100%;
  right: -16px;
  background-color: #58626d;
  visibility: hidden;
  color: #fff;
  min-width: 130px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  padding: 5px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
}

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

/* Arrow for tooltip */
.kc-login-tooltip .kc-tooltip-text::after {
  content: " ";
  position: absolute;
  /* top: 15px;
  right: 100%; */
  top: -5px;
  right: 15px;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  /* border-color: transparent #58626d transparent transparent; */
  border-color: transparent transparent #58626d transparent;
}
.login-pf-page .card-pf {
  padding: 24px 32px 32px 32px;
}
a#authenticateWebAuthnButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  text-decoration: none;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid var(--main-color);
  text-align: center;
  line-height: 1;
  position: relative;
}
a#authenticateWebAuthnButton::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  background-image: url("../img/security.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  #kc-container-wrapper {
    position: absolute;
    width: 100%;
  }

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

  #kc-locale {
    position: relative;
    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 .pf-c-button {
  margin-top: 8px;
}
.card-pf form.form-actions .btn {
  float: right;
  margin-left: 16px;
}

#kc-form-buttons {
  /* margin-top: 8px; */
  display: flex;
  gap: 16px;
}

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

.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: 1rem;
}

.select-auth-box-parent {
  border-top: 1px solid var(--pf-global--palette--black-200);
  padding-top: 1rem;
  padding-bottom: 1rem;
  cursor: pointer;
  text-align: left;
  align-items: unset;
  background-color: unset;
  border-right: unset;
  border-bottom: unset;
  border-left: unset;
}

.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);
}

.select-auth-box-paragraph {
  text-align: center;
  font-size: var(--pf-global--FontSize--md);
  margin-bottom: 5px;
}

.card-pf {
  position: relative;
  margin: 0 auto;
  box-shadow: 0px 4px 80px 0px rgba(51, 111, 178, 0.3);
  padding: 0 20px;
  max-width: 500px;
  border-top: none;
  /* border-color: var(--pf-global--primary-color--100); */
  border-radius: 24px;
  overflow: hidden;
}
#try-another-way {
  display: block;
  text-align: center;
  margin-top: 16px;
}
/*phone*/
@media (max-width: 500px) {
  .kc-social-item {
    padding: 8px 24px;
  }
  .login-pf-page .card-pf {
    padding: 24px 16px 32px 16px;
  }
  .kc-social-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-column-end: span 6;
    --pf-l-grid__item--GridColumnEnd: span 6;
  }
  .nav-justified,
  nav.nav-pills {
    gap: 8px;
  }
  .nav-justified > li {
    flex-basis: calc(50% - 4px);
  }
  .code-wrapper:not(:last-child) {
    margin-right: 6px;
  }
  .code-wrapper {
    width: calc(50% - 8px);
    display: inline-block;
  }
}
@media (max-width: 450px) {
  #kc-form-buttons {
    flex-wrap: wrap;
  }
  .form-btns {
    flex-wrap: wrap;
  }
}
@media (max-width: 400px) {
  .apb-social-flex {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
  }
  /* .apb-social-item {
    padding: 8px 24px;
  } */
}
.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;
}

.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,
#kc-update-email-form div.form-group:last-of-type {
  margin-bottom: 0px;
}

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

#kc-back {
  margin-top: 5px;
}
#kc-form-login div.form-group:last-of-type.mb-16.row {
  margin-bottom: 16px;
}
/* Recovery codes */
.kc-recovery-codes-warning {
  margin-bottom: 32px;
}
.kc-recovery-codes-warning .pf-c-alert__description p {
  font-size: 0.875rem;
}
.kc-recovery-codes-list {
  list-style: none;
  columns: 2;
  margin: 16px 0;
  padding: 16px 16px 8px 16px;
  border: 1px solid #d2d2d2;
}
.kc-recovery-codes-list li {
  margin-bottom: 8px;
  font-size: 11px;
}
.kc-recovery-codes-list li span {
  color: #6a6e73;
  width: 16px;
  text-align: right;
  display: inline-block;
  margin-right: 1px;
}

.kc-recovery-codes-actions {
  margin-bottom: 24px;
}
.kc-recovery-codes-actions button {
  padding-left: 0;
}
.kc-recovery-codes-actions button i {
  margin-right: 8px;
}

.kc-recovery-codes-confirmation {
  align-items: baseline;
  margin-bottom: 16px;
}

#certificate_subjectDN {
  overflow-wrap: break-word;
}
/* End Recovery codes */
