@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@-webkit-keyframes bounceInUp {
  from,
70%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
            animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 300px, 0);
  }
  70% {
    opacity: 1;
    transform: translate3d(0, -10px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
70%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
            animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 300px, 0);
  }
  70% {
    opacity: 1;
    transform: translate3d(0, -10px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 73, components/public/app/assets/stylesheets/public/global/animations.scss */
.animated {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/* line 77, components/public/app/assets/stylesheets/public/global/animations.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/* line 81, components/public/app/assets/stylesheets/public/global/animations.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

/* line 85, components/public/app/assets/stylesheets/public/global/animations.scss */
.animated.bounceIn, .animated.bounceOut {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
}

/* line 91, components/public/app/assets/stylesheets/public/global/animations.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}

/* line 94, components/public/app/assets/stylesheets/public/global/animations.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
          animation-name: bounceOutUp;
}

/* line 98, components/public/app/assets/stylesheets/public/global/animations.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

/* line 102, components/public/app/assets/stylesheets/public/global/animations.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

/* line 107, components/public/app/assets/stylesheets/public/global/animations.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

/* line 1, components/public/app/assets/stylesheets/public/components/header_block_with_illustration.scss */
.header-block-with-illustration {
  text-align: center;
}

/* line 4, components/public/app/assets/stylesheets/public/components/header_block_with_illustration.scss */
.header-block-with-illustration__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 30px;
}

/* line 12, components/public/app/assets/stylesheets/public/components/header_block_with_illustration.scss */
.header-block-with-illustration__illustration {
  position: absolute;
  stroke: #e51943;
  fill: white;
  top: -90px;
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 30px;
  padding: 25px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* line 25, components/public/app/assets/stylesheets/public/components/header_block_with_illustration.scss */
.header-block-with-illustration__title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #25253d;
  width: 100%;
}

/* line 32, components/public/app/assets/stylesheets/public/components/header_block_with_illustration.scss */
.header-block-with-illustration__description {
  width: 100%;
  font-size: 16px;
  line-height: 25px;
  color: #515164;
  margin-bottom: 1.8rem;
}

/* line 39, components/public/app/assets/stylesheets/public/components/header_block_with_illustration.scss */
.header-block-with-illustration__line {
  background-color: #e51943;
  width: 4rem;
  height: 0.2rem;
}

/* line 1, components/public/app/assets/stylesheets/public/components/secure/header.scss */
.secureHeader {
  padding-top: 2rem;
}

/* line 3, components/public/app/assets/stylesheets/public/components/secure/header.scss */
.secureHeader__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* line 8, components/public/app/assets/stylesheets/public/components/secure/header.scss */
.secureHeader__logo {
  display: flex;
  justify-content: center;
  min-width: 124px;
}

/* line 12, components/public/app/assets/stylesheets/public/components/secure/header.scss */
.secureHeader__logo img {
  width: 124px;
  height: 30px;
}

/* line 18, components/public/app/assets/stylesheets/public/components/secure/header.scss */
.secureHeader__sign_link {
  font-size: 16px;
  line-height: 28px;
  margin-block: auto;
}

/* line 22, components/public/app/assets/stylesheets/public/components/secure/header.scss */
.secureHeader__sign_link__sign_description {
  display: none;
}

@media all and (min-width: 768px) {
  /* line 22, components/public/app/assets/stylesheets/public/components/secure/header.scss */
  .secureHeader__sign_link__sign_description {
    color: #555d61;
    margin-right: 4px;
    display: inline;
  }
}

/* line 32, components/public/app/assets/stylesheets/public/components/secure/header.scss */
.secureHeader__sign_link__link {
  font-weight: 500;
  text-decoration: underline;
  color: #06838c;
}

@media all and (min-width: 768px) {
  /* line 1, components/public/app/assets/stylesheets/public/components/secure/header.scss */
  .secureHeader {
    padding-top: 4rem;
  }
}

/* line 4, components/public/app/assets/stylesheets/public/global/form.scss */
.form__wrapper {
  margin-top: 3rem;
}

@media all and (min-width: 576px) {
  /* line 4, components/public/app/assets/stylesheets/public/global/form.scss */
  .form__wrapper {
    margin-top: 2rem;
  }
}

/* line 10, components/public/app/assets/stylesheets/public/global/form.scss */
.form__container-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

@media all and (max-width: 1024px) {
  /* line 15, components/public/app/assets/stylesheets/public/global/form.scss */
  .form__container-wrapper--fancy {
    display: flex;
    justify-content: center;
  }
}

@media all and (min-width: 1024px) {
  /* line 15, components/public/app/assets/stylesheets/public/global/form.scss */
  .form__container-wrapper--fancy {
    margin-top: 128px;
  }
}

/* line 27, components/public/app/assets/stylesheets/public/global/form.scss */
.form__container {
  background-color: white;
  width: 100%;
  border-radius: 1rem;
  padding: 3rem;
}

/* line 33, components/public/app/assets/stylesheets/public/global/form.scss */
.form__container--with-box-shadow {
  box-shadow: 0 10px 60px #d3d3d8;
}

/* line 37, components/public/app/assets/stylesheets/public/global/form.scss */
.form__container--fancy {
  padding: 40px;
  width: 100%;
  max-width: none;
  box-shadow: 0px 0px 4px rgba(28, 36, 43, 0.08), 0px 8px 24px rgba(28, 36, 43, 0.12), 0px 16px 80px rgba(28, 36, 43, 0.08);
}

@media all and (min-width: 576px) {
  /* line 37, components/public/app/assets/stylesheets/public/global/form.scss */
  .form__container--fancy {
    width: 440px;
  }
}

/* line 49, components/public/app/assets/stylesheets/public/global/form.scss */
.form__container--full-expanded {
  max-width: 100%;
}

/* line 54, components/public/app/assets/stylesheets/public/global/form.scss */
.form__header, .form__description {
  margin-bottom: 3rem;
}

/* line 60, components/public/app/assets/stylesheets/public/global/form.scss */
.form__header:last-child {
  margin-bottom: 0;
}

/* line 65, components/public/app/assets/stylesheets/public/global/form.scss */
.form__description {
  font-size: 16px;
  line-height: 25px;
  color: #555d61;
}

/* line 71, components/public/app/assets/stylesheets/public/global/form.scss */
.form__action a {
  display: block;
}

/* line 77, components/public/app/assets/stylesheets/public/global/form.scss */
.form__footer-list__item {
  margin-bottom: 2rem;
  width: 100%;
}

/* line 80, components/public/app/assets/stylesheets/public/global/form.scss */
.form__footer-list__item:last-child {
  margin-bottom: 0;
}

/* line 86, components/public/app/assets/stylesheets/public/global/form.scss */
.form__row {
  margin-bottom: 2rem;
  text-align: left;
}

/* line 90, components/public/app/assets/stylesheets/public/global/form.scss */
.form__row__col {
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  /* line 90, components/public/app/assets/stylesheets/public/global/form.scss */
  .form__row__col {
    margin-bottom: 0;
  }
}

/* line 97, components/public/app/assets/stylesheets/public/global/form.scss */
.form__row .inline-inputs {
  display: flex;
  justify-content: center;
  place-content: center;
  flex-direction: row;
  text-align: center;
  white-space: nowrap;
}

/* line 105, components/public/app/assets/stylesheets/public/global/form.scss */
.form__row .inline-inputs .text-input__input-fancy__icon {
  top: 21px;
}

/* line 109, components/public/app/assets/stylesheets/public/global/form.scss */
.form__row .inline-inputs ::-moz-placeholder {
  left: 0;
}
.form__row .inline-inputs :-ms-input-placeholder {
  left: 0;
}
.form__row .inline-inputs ::placeholder {
  left: 0;
}

@media all and (max-width: 665px) {
  /* line 97, components/public/app/assets/stylesheets/public/global/form.scss */
  .form__row .inline-inputs {
    flex-direction: column;
    white-space: inherit;
  }
}

/* line 117, components/public/app/assets/stylesheets/public/global/form.scss */
.form__row .inline-inputs input {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 16px;
}

/* line 123, components/public/app/assets/stylesheets/public/global/form.scss */
.form__row .inline-inputs button,
.form__row .inline-inputs input {
  height: 48px;
}

@media all and (max-width: 665px) {
  /* line 123, components/public/app/assets/stylesheets/public/global/form.scss */
  .form__row .inline-inputs button,
.form__row .inline-inputs input {
    width: 100% !important;
  }
}

/* line 131, components/public/app/assets/stylesheets/public/global/form.scss */
.form__row .inline-inputs .text-input__input-fancy {
  width: 341px;
  padding-left: 40px;
}

/* line 135, components/public/app/assets/stylesheets/public/global/form.scss */
.form__row .inline-inputs .button {
  white-space: nowrap;
  width: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* line 144, components/public/app/assets/stylesheets/public/global/form.scss */
.form__multi {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

/* line 148, components/public/app/assets/stylesheets/public/global/form.scss */
.form__multi__element {
  margin-bottom: 20px;
  flex: 0 1 100%;
}

/* line 151, components/public/app/assets/stylesheets/public/global/form.scss */
.form__multi__element:last-child {
  margin-bottom: 0;
}

@media all and (min-width: 576px) {
  /* line 144, components/public/app/assets/stylesheets/public/global/form.scss */
  .form__multi {
    flex-wrap: nowrap;
  }
  /* line 158, components/public/app/assets/stylesheets/public/global/form.scss */
  .form__multi__element {
    margin-bottom: 0;
    flex: 0 1 50%;
    margin-right: 20px;
  }
  /* line 163, components/public/app/assets/stylesheets/public/global/form.scss */
  .form__multi__element:last-child {
    margin-right: 0px;
  }
}

/* line 170, components/public/app/assets/stylesheets/public/global/form.scss */
.form__footer {
  margin-top: 4rem;
  padding: 0 3rem;
  text-align: center;
  width: 100%;
}

@media all and (min-width: 576px) {
  /* line 170, components/public/app/assets/stylesheets/public/global/form.scss */
  .form__footer {
    padding: 0 4rem;
  }
}

/* line 180, components/public/app/assets/stylesheets/public/global/form.scss */
.form .small-text-checkbox {
  font-size: 14px;
  line-height: 20px;
  display: block;
  color: #555d61;
  line-height: 22px;
  margin-left: 23px;
  margin-top: 5px;
}

/* line 187, components/public/app/assets/stylesheets/public/global/form.scss */
.form .small-text-checkbox__link {
  font-size: 14px;
  line-height: 20px;
  line-height: 15px;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid rgba(85, 93, 97, 0.3);
}

/* line 196, components/public/app/assets/stylesheets/public/global/form.scss */
.form__saml_link {
  font-size: 16px;
  line-height: 25px;
  margin-top: 3rem;
  display: inline-block;
  text-decoration: underline;
  color: #06838c;
  font-weight: 500;
}

/* line 17, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input {
  position: relative;
  color: #7c7c8b;
}

/* line 21, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input {
  width: 100%;
  border: 2px solid #a8a8b1;
  border-radius: 5px;
  padding: 13px;
  padding-top: 33px;
  font-size: 16px;
  border-radius: 8px;
  background: white;
  transition: border-color 0.1s ease;
  color: #25253d;
  height: 70px;
}

/* line 4, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input::-webkit-input-placeholder {
  color: #7c7c8b;
}

/* line 7, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input:-moz-placeholder {
  color: #7c7c8b;
}

/* line 10, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input::-moz-placeholder {
  color: #7c7c8b;
}

/* line 13, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input:-ms-input-placeholder {
  color: #7c7c8b;
}

/* line 38, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input:focus {
  border-color: #07a2ad;
  color: #25253d;
}

/* line 43, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input:focus ~ .text-input__label {
  color: #07a2ad;
}

/* line 47, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input:disabled {
  background-color: #e9e9ec;
  color: #7c7c8b;
}

/* line 53, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input-fancy {
  width: 100%;
  background-color: #ffffff;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: calc(8px + 2px);
  padding-bottom: calc(8px + 2px);
  margin-top: 8px;
  border: 2px solid #e9e9ec;
  border-radius: 8px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: #25253d;
  transition: border-color 0.1s ease;
}

/* line 69, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input-fancy__icon {
  position: absolute;
  top: calc(40px + 2px);
  left: 12px;
}

/* line 4, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input-fancy::-webkit-input-placeholder {
  color: #a8a8b1;
}

/* line 7, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input-fancy:-moz-placeholder {
  color: #a8a8b1;
}

/* line 10, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input-fancy::-moz-placeholder {
  color: #a8a8b1;
}

/* line 13, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input-fancy:-ms-input-placeholder {
  color: #a8a8b1;
}

/* line 79, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input-fancy:focus {
  border-color: #07a2ad;
  color: #515164;
}

/* line 84, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__input-fancy:disabled {
  background-color: #f4f4f5;
  border-color: #d3d3d8;
  color: #515164;
}

/* line 91, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__label {
  position: absolute;
  top: 15px;
  left: 15px;
  padding-right: 30px;
  font-weight: 600;
  font-size: 14px;
  display: block;
  transition: color 0.1s ease;
  pointer-events: none;
  color: #7c7c8b;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  text-align: left;
}

/* line 111, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__label-fancy {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  transition: color 0.1s ease;
  pointer-events: none;
  color: #25253d;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 121, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input__icons {
  position: absolute;
  top: 19px;
  right: 9px;
}

/* line 128, components/public/app/assets/stylesheets/public/global/text-input.scss */
.text-input.text-input--with-icon .text-input__input-fancy {
  padding-left: calc(48px + 4px);
}

/* line 135, components/public/app/assets/stylesheets/public/global/text-input.scss */
.form__row.field_with_errors .text-input__input,
.form__row.field_with_errors .text-input__input-fancy,
.form__multi__element.field_with_errors .text-input__input,
.form__multi__element.field_with_errors .text-input__input-fancy,
.text-input .field_with_errors .text-input__input,
.text-input .field_with_errors .text-input__input-fancy {
  border: 2px solid #e51943;
}

/* line 140, components/public/app/assets/stylesheets/public/global/text-input.scss */
.form__row.field_with_errors .text-input__label,
.form__row.field_with_errors .text-input__label-fancy,
.form__multi__element.field_with_errors .text-input__label,
.form__multi__element.field_with_errors .text-input__label-fancy,
.text-input .field_with_errors .text-input__label,
.text-input .field_with_errors .text-input__label-fancy {
  color: #e51943;
  text-align: left;
}

/* line 1, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso-title {
  font-size: 16px;
  line-height: 28px;
  color: #25253d;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* line 8, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso-list {
  display: flex;
  justify-content: space-between;
}

/* line 11, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso-list__item {
  margin-right: 1rem;
  flex: 1;
}

/* line 14, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso-list__item:last-child {
  margin-right: 0;
}

/* line 17, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso-list__item .button {
  display: flex;
  padding-left: 0;
  padding-right: 0;
  justify-content: center;
}

/* line 27, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso-list_long__item {
  margin-bottom: 12px;
}

/* line 29, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso-list_long__item:last-child {
  margin-bottom: 0;
}

/* line 32, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso-list_long__item .sso_button_content {
  color: #7c7c8b;
  display: flex;
  justify-content: center;
}

/* line 36, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso-list_long__item .sso_button_content > img {
  margin-right: 1rem;
}

/* line 40, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso-list_long__item .sso_button_logo {
  margin-right: 12px;
}

/* line 47, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso_separator {
  border-top: 1px solid #a8a8b1;
  margin: 30px 0;
  position: relative;
  height: 1px;
  text-align: center;
}

/* line 53, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso_separator_text {
  background: white;
  color: #7c7c8b;
  padding: 0 10px;
  position: relative;
  top: -10px;
}

/* line 63, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso_button_content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* line 69, components/public/app/assets/stylesheets/public/components/sso.scss */
.sso_button_logo {
  width: 2rem;
  height: 2rem;
}

/* line 1, components/public/app/assets/stylesheets/public/components/password.scss */
.password-title {
  font-size: 16px;
  line-height: 28px;
  color: #25253d;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 40px;
}

/* line 1, components/public/app/assets/stylesheets/public/users/sessions.scss */
.signin-demo-loading {
  padding: 2rem 0;
  text-align: center;
}

/* line 6, components/public/app/assets/stylesheets/public/users/sessions.scss */
.signin-demo-loading__spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border: 4px solid #e5e5e5;
  border-top-color: #ff355e;
  border-radius: 50%;
  -webkit-animation: signin-demo-spin 0.8s linear infinite;
          animation: signin-demo-spin 0.8s linear infinite;
}

/* line 16, components/public/app/assets/stylesheets/public/users/sessions.scss */
.signin-demo-loading__text {
  font-size: 14px;
  color: #515164;
}

@-webkit-keyframes signin-demo-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes signin-demo-spin {
  to {
    transform: rotate(360deg);
  }
}

/* line 28, components/public/app/assets/stylesheets/public/users/sessions.scss */
.mfa_qr_code .mfa_qr_code_description {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #515164;
}

/* line 37, components/public/app/assets/stylesheets/public/users/sessions.scss */
.mfa_qr_code .help_link {
  text-align: center;
}

/* line 41, components/public/app/assets/stylesheets/public/users/sessions.scss */
.mfa_qr_code .qr-code-container {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* line 46, components/public/app/assets/stylesheets/public/users/sessions.scss */
.mfa_qr_code .qr_code {
  max-width: 240px;
  max-height: 240px;
  margin: 0 auto;
}

/* line 52, components/public/app/assets/stylesheets/public/users/sessions.scss */
.mfa_qr_code .mfa-code-input {
  margin: 0 auto;
  max-width: 90%;
}
