@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Regular.ttf) format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Medium.ttf) format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url(../fonts/WorkSans-Regular.ttf) format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --color-blue: #1890ff;
  --color-blue-dark: #1c60af;
  --color-orange: #ee7d12;

  --color-move-message-success-background: #dff0d8c0;
  --color-move-message-success-text: #466424;
  --color-move-message-warning-background: #ee7c12c0;
  --color-move-message-warning-text: #d8710f;
  --color-move-message-info-background: #5494fdc0;
  --color-move-message-info-text: #1c60af;
  --color-move-message-error-background: #ff6964c0;
  --color-move-message-error-text: #e03834;

  --height-toolbar: 70px;
}

body {
  overflow-y: hidden;
  margin: 0;
}

main {
  margin-top: var(--height-toolbar);
}

.move-toolbar {
  background-color: #fafafa;
  box-shadow: 0 20px 50px #2453a513;
  -webkit-box-shadow: 0 20px 50px #2453a513;
  display: flex;
  height: var(--height-toolbar);
  justify-content: center;
  max-height: var(--height-toolbar);
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}

.move-toolbar .toolbar-content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: flex-start;
  max-width: 1134px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.move-alert-message {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  border-radius: 15px;
  padding: 12px;
}

.move-alert-message.success {
  background-color: var(--color-move-message-success-background);
  color: var(--color-move-message-success-text);
}

.move-alert-message.error {
  background-color: var(--color-move-message-error-background);
  color: var(--color-move-message-error-text);
}

.move-alert-message.info {
  background-color: var(--color-move-message-info-background);
  color: var(--color-move-message-info-text);
}

.move-alert-message.warning {
  background-color: var(--color-move-message-warning-background);
  color: var(--color-move-message-warning-text);
}

.move-input-wrapper {
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  border: 1px solid #e8f0fe;
  border-radius: 8px !important;
  color: var(--color-blue-dark);
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-variant: normal;
  font-weight: 500;
  line-height: 21px;
  padding: 6px;
  background-color: #fff;
  background-image: none;
  display: inline-flex;
  min-width: 0;
  position: relative;
  transition: all 0.3s;
  width: 100%;
}

.move-input-wrapper:before {
  content: "\a0";
  visibility: hidden;
  width: 0;
}

.move-input-wrapper:hover {
  border-color: #87a3c2 !important;
}

.move-input-wrapper:focus {
  border-color: #7992af !important;
}

.move-input-prefix {
  margin-right: 4px;
  align-items: center;
  display: flex;
  flex: none;
}

.move-input-wrapper input {
  border: none;
  outline: none;
  padding: 0;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  border-radius: 8px !important;
  color: var(--color-blue-dark);
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-variant: normal;
  font-weight: 500;
  background-image: none;
  line-height: 21px;
  box-sizing: border-box;
  display: inline-block;
  list-style: none;
  margin: 0;
  min-width: 0;
  position: relative;
  transition: all 0.3s;
  width: 100%;
}

.move-input-wrapper input:-ms-input-placeholder {
  color: #b7b7b7;
}

.move-input-wrapper input::-ms-input-placeholder {
  color: #b7b7b7;
}

.move-input-wrapper input::placeholder {
  color: #b7b7b7;
}

.move-input-wrapper input:hover {
  border-color: #87a3c2 !important;
  border-color: #40a9ff;
  border-right-width: 1px !important;
}

.move-input-wrapper input:placeholder-shown {
  text-overflow: ellipsis;
}

.moveicon {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  display: inline-block;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
}

.move-input-wrapper .move-input-prefix svg {
  color: #5494fd;
}

.moveicon svg {
  display: inline-block;
}

.form-group {
  margin-top: 16px;
}

.login-pf {
  background: none;
}

.login-pf .login-pf-page {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

.login-page-content {
  margin: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1086px;
  height: 100%;
}

.login-block {
  flex-grow: 1;
  width: 100%;
  position: relative;
}

.login-block .login-card {
  box-shadow: 0px 20px 40px #1c60af3e !important;
  -webkit-box-shadow: 0px 20px 40px #1c60af3e !important;
  border-radius: 15px !important;
  background-color: white !important;
  overflow: hidden;
  position: relative;
}

.login-card .kc-form-auth {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum", "tnum";
}

.kc-form-auth .move-auth-form-fields {
  padding-top: 32px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 12px;
}

.kc-form-auth .move-auth-form-alerts {
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.kc-form-auth .move-auth-form-actions {
  align-items: center;
  background-color: #f3f2ef;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
}

.kc-form-auth .move-auth-form-actions .pf-c-button:last-child {
  margin-left: auto;
}

.kc-form-auth .move-auth-form-actions a {
  color: var(--color-blue);
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.move-auth-form-actions .pf-c-button {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: italic;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  font-weight: 500;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 47px;
  min-width: 203px;
  border-radius: 90px;
  border-color: transparent;
  background-color: var(--color-orange);
  color: white;
  cursor: pointer;
  min-width: auto !important;
  padding-left: 16px;
  padding-right: 16px;
  height: 36px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 14px;
}

.move-auth-form-actions .pf-c-button:hover {
  box-shadow: 0px 20px 40px #1c60af3e !important;
  -webkit-box-shadow: 0px 20px 40px #1c60af3e !important;
  border-color: transparent;
  background-color: #fc820f;
  color: white;
}

.move-auth-form-fields .title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 32px;
  font-style: normal;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  font-weight: 500;
  color: var(--color-blue-dark);
}

.move-auth-form-fields .description {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-style: normal;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
  color: var(--color-blue-dark);
  -webkit-font-smoothing: antialiased;
}

.move-description-block {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.move-description-block img {
  width: 191px;
  height: 41px;
}

.move-description-block .info-text {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  line-height: 60px;
  font-style: normal;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  font-weight: 500;
  color: var(--color-blue-dark);
  margin-top: 40px;
}

.move-description-block .info-text .divided-text {
  display: inline;
}

.move-description-block .info-text .full-text {
  display: none;
}

.move-description-block .powered-by {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 30px;
  font-weight: 300;
  color: #5494fd;
  margin-top: 24px;
  text-transform: uppercase;
}

.background-houses-gradient {
  position: fixed;
  height: 100%;
  width: 100%;
  pointer-events: none;
  bottom: 0;
  top: 0;
  z-index: -1;
}

.background-houses-gradient img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  opacity: 0.28;
}

.background-houses-gradient .gradient-layer-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #5494fd 0% 0% no-repeat padding-box;
  border: 1px solid #535353;
  opacity: 0.84;
}

.background-houses-gradient .gradient-layer-2 {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #f3f2ef 0% 0% no-repeat padding-box;
  border: 1px solid #535353;
}

.background-houses-gradient .gradient-layer-3 {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #e8f0fe 0% 0% no-repeat padding-box;
  mix-blend-mode: color;
}

.background-houses-gradient .gradient-layer-4 {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: transparent linear-gradient(180deg, #e8f0fe 0%, #e8f0fe00 100%) 0%
    0% no-repeat padding-box;
}

.background-houses-gradient .gradient-layer-5 {
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 40%;
  background: transparent linear-gradient(0deg, #d3e1fd 0%, #d3e1fd00 100%) 0%
    0% no-repeat padding-box;
}

.pf-c-dropdown {
  position: absolute;
  right: 8px;
  top: 8px;
  -webkit-touch-callout: none;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  color: #5494fd;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 35px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: uppercase;
  z-index: 2;
}

.pf-c-dropdown #kc-current-locale-link {
  display: flex;
  align-items: center;
}

.pf-c-dropdown .pf-c-dropdown__menu {
  position: absolute;
  top: 16px;
  right: -24px;
  display: none;
  background-color: #fafafa;
  border-radius: 15px !important;
  box-shadow: 0 20px 40px #1c60af3e !important;
  -webkit-box-shadow: 0 20px 40px #1c60af3e !important;
  margin-top: 16px;
  overflow: hidden;
  padding: 12px 24px;
}

.pf-c-dropdown[isOpen="true"] .pf-c-dropdown__menu {
  display: block;
}

.down-outlined svg {
  color: #cdd9f2;
  height: 12px;
  width: 12px;
  margin-left: 4px;
  transition: transform 0.24s;
}

.pf-c-dropdown[isOpen="true"] .down-outlined svg {
  display: block;
  transform: rotate(180deg);
}

.pf-c-dropdown .pf-c-dropdown__menu li {
  list-style-type: none;
  font-feature-settings: normal;
  color: var(--color-blue-dark);
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 35px;
}

.pf-c-dropdown .pf-c-dropdown__menu li:hover {
  color: var(--color-orange);
}

.pf-c-dropdown .pf-c-dropdown__menu li:hover a {
  color: var(--color-orange) !important;
}

.pf-c-dropdown__menu-item a {
  text-decoration: none !important;
  color: var(--color-blue-dark) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-right svg {
  height: 12px;
  width: 19px;
}

.no-padding {
  padding: 0 !important;
}

.move-checkbox-wrapper {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  display: inline-flex;
  align-items: baseline;
  cursor: pointer;
}

.move-checkbox-wrapper .move-checkbox {
  margin: 0;
  padding: 0;
  list-style: none;
  top: 0.2em;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  color: #535353;
  font-size: 13px;
  font-style: normal;
  font-variant: normal;
  line-height: 21px;
  font-weight: 500;
  margin-right: 8px;
}

.move-checkbox-wrapper .move-checkbox input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.move-checkbox-wrapper .move-checkbox .move-checkbox-inner {
  box-sizing: border-box;
  position: relative;
  top: 0;
  inset-inline-start: 0;
  display: block;
  width: 16px;
  height: 16px;
  direction: ltr;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  border-collapse: separate;
  transition: all 0.3s;
  line-height: 21px;
  font-size: 13px;
  font-style: normal;
  font-variant: normal;
  font-weight: 500;
  font-feature-settings: normal;
  color: #535353;
  font-family: Montserrat, sans-serif;
}

.move-checkbox-wrapper .move-checkbox.checked .move-checkbox-inner {
  background-color: #1677ff;
  border-color: #1677ff;
  line-height: 21px;
  font-size: 13px;
  font-style: normal;
  font-variant: normal;
  font-weight: 500;
  font-feature-settings: normal;
  color: #535353;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  border-collapse: separate;
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  top: 0;
  inset-inline-start: 0;
  display: block;
  width: 16px;
  height: 16px;
  direction: ltr;
}

.move-checkbox-wrapper .move-checkbox .move-checkbox-inner::after {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  inset-inline-start: 21.5%;
  display: table;
  width: 5.7142857142857135px;
  height: 9.142857142857142px;
  border: 2px solid #fff;
  border-top: 0;
  border-inline-start: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  content: "";
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}

.move-checkbox-wrapper .move-checkbox.checked .move-checkbox-inner::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  inset-inline-start: 21.5%;
  display: table;
  width: 5.7142857142857135px;
  height: 9.142857142857142px;
  border: 2px solid #fff;
  border-top: 0;
  border-inline-start: 0;
  opacity: 1;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

@media only screen and (max-width: 938px) {
  .move-description-block .info-text .divided-text {
    display: none;
  }

  .move-description-block .info-text .full-text {
    display: inline;
  }
}

@media only screen and (max-width: 767px) {
  .login-page-content {
    flex-direction: column;
    margin: 16px;
  }

  .move-description-block .info-text .divided-text {
    display: none;
  }

  .move-description-block .info-text .full-text {
    display: inline;
  }
}

@media only screen and (max-width: 654px) {
  .move-description-block .info-text .divided-text {
    display: inline;
  }

  .move-description-block .info-text .full-text {
    display: none;
  }

  body {
    overflow-y: auto;
  }
}

@media only screen and (max-width: 600px) {
  .login-pf .login-pf-page {
    height: auto !important;
  }

  .login-block {
    margin-top: 24px;
  }

  .move-description-block img {
    margin-top: 32px;
    width: 130px;
    height: 30px;
  }

  .move-description-block .info-text {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    margin-top: 24px;
    line-height: 32px;
  }

  .move-description-block .powered-by {
    font-size: 12px;
    line-height: 18px;
    margin-top: 16px;
  }

  .move-description-block .info-text .divided-text {
    display: none;
  }

  .move-description-block .info-text .full-text {
    display: inline;
  }
}

.remember-me-checkbox {
  display: inline-block;
}

.remember-me-checkbox input {
  pointer-events: none;
}