* {
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: transparent;
  margin: 0;
}

.callout--hide {
  display: none !important;
}

[data-callout-icon] {
  height: 40px;
  width: 40px;
}

.callout--green [data-callout-icon] {
  background: url("../img/success.svg") no-repeat center center;
}

.callout--orange [data-callout-icon] {
  background: url("../img/warning.svg") no-repeat center center;
}

.callout--red [data-callout-icon] {
  background: url("../img/danger.svg") no-repeat center center;
}

fuel-typography strong {
  font-weight: 700 !important;
}

@media screen and (max-width: 480px) {
  fuel-typography strong {
    display: block;
  }
}

#kc-header {
  display: flex;
  position: fixed;
  width: 100%;
}

#kc-header-wrapper {
  align-items: center;
  display: flex;
  height: auto;
  justify-content: center;
  padding: var(--spacing-km10) 0;
  width: 100%;
}

.kc-logo-text {
  background: url("../img/fretebras.svg") no-repeat center center;
  height: 24px;
  width: 131px;
}

.kc-logo-text > span {
  display: block;
  text-indent: -9999px;
}

#kc-content {
  display: flex;
  position: relative;
  height: 100vh;
}

@media screen and (max-width: 480px) {
  #kc-content {
    align-items: flex-start;
  }
}

#kc-content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-km12) 0;
  height: 100%;
  justify-content: center;
  padding: 0 var(--padding-km6);
  width: 100%;
}

#kc-social-providers {
  display: inline-flex;
  gap: var(--spacing-km0) var(--spacing-km16);
  height: 100%;
  justify-content: center;
}

#kc-form-wrapper {
  align-items: center;
  display: flex;
  gap: var(--spacing-km16);
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #kc-header {
    position: relative;
  }

  #kc-content-wrapper {
    justify-content: flex-start;
  }

  #kc-form-wrapper {
    flex-direction: column;
  }

  .pfc-split-bar {
    display: none;
  }

  #kc-social-providers {
    gap: var(--spacing-km16) var(--spacing-km0);
    width: 100%;
  }

  #kc-form-identity-provider {
    justify-content: center;
    margin-right: 0;
  }
}

#kc-form-login,
#kc-reset-password-form,
#kc-passwd-update-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-km6) 0;
  max-width: 400px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  #kc-form-login,
  #kc-reset-password-form,
  #kc-passwd-update-form {
    max-width: auto;
  }

  #kc-form-identity-provider {
    width: 100%;
  }
}

#kc-form-identity-provider {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 18em;
}

#kc-content {
  display: flex;
  justify-content: center;
}

#kc-form {
  display: flex;
  width: 100%;
}

#kc-form-options {
  display: flex;
  margin-bottom: var(--spacing-km4);
}

#kc-form-buttons {
  padding-top: var(--padding-km3);
}

#kc-login {
  display: flex;
  justify-content: flex-start;
}

@-moz-document url-prefix() {
  #kc-social-providers {
    gap: 75px;
  }
}

.pfc-split-bar {
  border-left: 1px solid black;
}

.pfc-social-container {
  all: initial;
  margin: 1.5em 0;
  display: flex;
  flex-direction: column;
  width: auto;
  justify-content: center;
}

a[id^="social-"]:link {
  text-decoration: none;
  margin: 0.5em 0;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.pfc-social-btn {
  border: 2px solid black;
  border-radius: 12px;
  background-color: white;
  color: black;
  width: 100%;
  height: 100%;
  padding: 1em 7em;
  font-size: 16px;
  cursor: pointer;
}

.kc-social-icon-text {
  margin-left: 0.5em;
}

/* Gray */
.btn-default {
  border-color: #e7e7e7;
  color: black;
}

.btn-default:hover {
  background: #e7e7e7;
}

.not-found {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.not-found__image {
  margin-bottom: 48px;
}

.not-found__description {
  margin: 16px 0 48px;
}

.not-found__button {
  margin-bottom: 48px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 9;
}
.modal-content {
  background-color: white;
  margin: 0 auto;
  padding: 40px;
  border-radius: 5px;
  width: 50%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  height: 50vh;
  justify-content: center;
}
