body {
  min-height: 100vh;
  display: flex;
  width: 100%;
  background-color: rgb(255, 255, 255);
  font-family: "PxGroteskRegular", sans-serif;
}

@font-face {
	font-family: 'Roboto';
	font-weight: 500;
	font-display: swap;
	src: url('https://static.sipgate.com/fonts/roboto/Roboto-Medium.ttf') format('truetype');
}


input,
button {
  font-family: inherit;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

button {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  body {
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
  }
}

.login__wrapper {
  width: 100%;
}

.login {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  height: auto;
  width: 100%;
  background-color: rgb(255, 255, 255);
}

@media (min-width: 768px) {
  .login__wrapper {
    width: 420px;
  }

  .login {
    margin: 1em auto;
    border: 0.0625rem solid #e6e6e6;
    border-radius: 8px;
  }
}

.login__header {
  width: 100%;
  text-align: center;
  background-color: rgb(255, 255, 255);
}

@media (min-width: 768px) {
  .login__header {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
}

.login__header-logo {
  padding-top: 64px;
  padding-bottom: 24px;
  width: 200px;
}

.login__backdrop {
  display: none;
}

@media (min-width: 768px) {
  .login__backdrop {
    display: block;
    position: fixed;
    z-index: -1;
    width: 1056px;
    height: 1080px;

    transform-box: fill-box;
    transform-origin: center;
    background: url('../img/bg-fade.svg') no-repeat center center;
    animation: opacity 0.5s linear 0.5s 1 forwards, waber 7.5s linear 1s infinite alternate;
    opacity: 0;
  }

  // Firefox has problems with svg gradients in background-image. we use a png instead
  @-moz-document url-prefix() {
    .login__backdrop {
      background: url('../img/bg-fade.png') no-repeat center center;
    }
  }

  @media (prefers-reduced-motion) {
    .login__backdrop {
      opacity: 1;
      animation: none;
    }
  }

  @keyframes opacity {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @keyframes waber {
    0% {
      transform: scale(1) skew(0deg) rotate(0deg);
    }
    100% {
      transform: scale(0.75) skew(10deg, 10deg) rotate(15deg);
    }
  }

}

.login__body {
  box-sizing: border-box;
  width: 100%;
  padding: 25px;
  background: #ffffff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.login__body-loading {
  opacity: 0.5;
}

.login__body .alert--info {
  background-color: inherit;
  color: rgb(49, 52, 67);
}

@media (min-width: 768px) {
  .login__body {
    padding: 35px 60px 40px;
  }
}

.login__input-wrapper {
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  height: 48px;
  position: relative;
  background-color: transparent;
  transition: height 200ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  cursor: auto;
  margin-bottom: 14px;
  box-sizing: border-box;
}

.login__input-wrapper + .login__input-wrapper {
  margin-bottom: 0;
}

.login__input-wrapper label {
  box-sizing: border-box;
}

.login__input {
  padding: 0 32px 0 8px;
  position: relative;
  width: 100%;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  color: rgb(49, 52, 67);
  cursor: inherit;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  font-stretch: inherit;
  font-size: inherit;
  line-height: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: 100%;
  box-sizing: border-box;
  transition: background-color 5000s ease-in-out 0s;
}

.login__input--clear {
  opacity: 0.7;
  position: absolute;
  padding-left: 5px;
  padding-right: 8px;
  right: 0;
  top: 16px;
  height: 12px;
  width: 25px;
  cursor: pointer;
  box-sizing: border-box;
  transition-timing-function: ease;
  transition-duration: 240ms;
}

button.login__submit {
  border-radius: 0.25rem;
  height: 2.5rem;
  line-height: 2.2rem;
  text-transform: none !important;
}

.login__submit,
.grant__accept,
.grant__cancel,
.login__password,
.login__link__social__login {
  border: none;
  outline: none;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgb(16, 134, 252);
  font-weight: 400;
  line-height: 16px;
  font-size: 16px;
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .3s;
}

.login__submit:hover {
  background-color: rgb(0, 103, 214);
}

input[type="checkbox"]:focus-visible,
button:focus-visible,
.provider-generic:focus-visible ,
.login__password:focus-visible{
  box-shadow: #f519b7 0 0 0 3px inset;
  outline: none;
}

.resend-waiting {
  cursor: default;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  color: rgb(161, 161, 161);
  font-weight: 200;
}

.login__submit {
  height: 50px;
  margin-top: 35px;
  border-radius: 4px;
}

a.login__submit {
  line-height: 50px;
}

.loginWithSeparator {
  display: flex;
  flex-direction: row;
  height: 17px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 24px 0;
}

.loginWithSeparator i {
  flex: 1 1 auto;
  border-top: 1px solid #E6E6E6;
  box-sizing: border-box;
}

.loginWithSeparator span {
  padding: 0 1rem;
  flex: 0 1 auto;
  font-size: 14px;
  line-height: 17px;
  color: #666;
  transform: translateY(-3.5px);
}

.grant__accept {
  padding: 16px;
  margin-top: 35px;
}

.login__submit-loading {
  background-color: #a1a1a1;
}

.trust_device__submit {
  margin-top: 16px !important;
}

.grant__cancel,
.login__password {
  padding: 0px;
  margin-top: 24px;
}

.grant__accept:hover {
  transform: translate(5px, -4px);
  box-shadow: -10px 8px 0 #3c3c3c;
}

.grant__cancel,
.login__password {
  color: rgb(60, 60, 60);
  background-color: rgb(255, 255, 255);
  transition-timing-function: ease;
  transition-duration: 240ms;
}

.grant__cancel:hover,
.login__password:hover {
  color: rgb(49, 52, 67);
}

.login__password:disabled{
  color: rgb(161, 161, 161);
  background-color: rgb(255, 255, 255);
}

.consent_message {
  max-width: 75%;
  margin: 20px auto;
  line-height: 26px;
}

.consent_message .client-id {
  font-size: 110%;
  font-weight: 900;
}

.scope-item {
  list-style-type: none;
  margin-bottom: 3px;
  margin-top: 3px;
}

#kc-form-options {
  text-align: left;
}

.login__remember {
  margin-top: 24px;
  color: rgb(85, 95, 120);
}

.login__remember label {
  color: rgb(161, 161, 161);
  cursor: pointer;
}

.login__remember label span {
  margin-left: 8px;
}


.login__remember input {
  vertical-align: bottom;
  height: 16px;
  width: 16px;
}

.login__optionsbox {
  height: 19px;
}

.alert {
  align-items: center;
  color: rgb(255, 255, 255);
}

.alert--warning {
  background-color: #ffad3a;
}

.alert--info {
  background-color: #55b7f0;
}

.alert--error {
  background-color: #1086fc;
}

.hidden {
  display: none;
}

.company-link {
  color: rgb(193, 194, 198);
  cursor: pointer;
  transition-timing-function: ease;
  transition-duration: 240ms;
  text-decoration: none;
  display: block;
  margin-top: 24px;
}

.company-link:hover {
  color: rgb(49, 52, 67);
}

.email-otp-notice {
  margin-bottom: 24px;
  text-align: left;
}

.email-otp-info {
  width: 100%;
  color: #888;
  cursor: pointer;
  transition-timing-function: ease;
  transition-duration: 240ms;
  text-decoration: none;
  display: block;
  padding-bottom: 8px;
  text-align: left;
}

.email-otp-info > summary{
  color: black;
  text-align: left;

}

.kb-info:hover {
  color: rgb(49, 52, 67);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

.social-login-providers {
  margin-top: 0px;
}

.social-login-providers__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-login-providers__list_element {
  padding: 0;
  width: 100%;
  height: 40px;
  margin: 1rem 0;
  vertical-align: middle;
}

.social-login-providers__link {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 54px;
  text-transform: uppercase;
  line-height: 54px;
  text-decoration: none;
  color: white;
  display: block;
  text-align: center;
  transition-property: opacity;
  transition-duration: 240ms;
  transition-timing-function: ease;
}

.social-login-providers__link:hover {
  opacity: 0.85;
  cursor: pointer;
}

.rememberMe {
  cursor: pointer;

}




.provider-generic {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}


.login__password {
  text-decoration: underline;
  color: rgb(161, 161, 161);
}

#kc-oauth ul {
  max-width: 65%;
  margin: 20px auto;
}

#kc-oauth ul li {
  text-align: left;
  list-style-type: disc;
}

.client-tac-notice {
  font-size: 11px;
  text-align: left;
  line-height: 14px;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

@keyframes colors {
  0% {
    stroke: white;
  }
  100% {
    stroke: white;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 31;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 125;
    transform: rotate(450deg);
  }
}

.spinner {
  animation: rotator 1.4s linear infinite;
  width: 30px;
  height: 30px;
}

.path {
  stroke-dasharray: 125;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  20%,
  60% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  40%,
  80% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
}

.shake--error {
  display: flex;
  align-items: center;
  animation: shake 400ms;
  padding: 20px;
}

.otpMessage {
  padding-bottom: 24px;
}

.otpButton {
  margin-top: 24px;
}

.inputNotice {
  margin-bottom: 3em;
  align-self: center;
}

#magicLink h3 {
  margin-top: 0;
}

.provider-generic:hover {
  background: #fafafa;
}

.provider-generic img {
  width: 1.125rem;
  height: 1.125rem;
  float: left;
  display: block;
  margin-right: 1rem;
}

.provider-apple img {
  height: 1.25rem;
  width: auto;

}

.provider-generic span {
  box-sizing: border-box;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  height: 100%;
  line-height: 2.2rem;


  font-size: 1.125rem;
  font-family: 'PxGroteskRegular', sans-serif;

}

.provider-generic {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
  height: 2.5rem;
  padding: 0;
  
  background: #fff;
  
  border: 0.0625rem solid #cdcdcd;
  border-radius: 0.25rem;

  color: rgba(0, 0, 0, 0.54);



}


hr.social-login-separators {
  border-top: 1px solid #e6e6e6;
  overflow: visible;
  text-align: center;
  border-right: 0;
  margin: 2rem 0 1rem 0;
  padding: 0;
  border-bottom: 0;
  border-left: 0;
  padding-bottom: 1rem;
}

hr.social-login-separators:after {
  display: inline-block;
  position: relative;
  top: -0.75rem;
  padding: 0 0.5rem;
  background-color: #fff;
  font-size: 1rem;
  color: #3c3c3c;
  line-height: 0.75rem;
  content: attr(data-content);
}


