body {
  background-color: #F6F6F6;
}

.container {
  margin: 4rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.logo {
  /* margin: 0 auto; */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.login-container {
  width: auto;
  margin-top: 7rem;
  text-align: center;
}

@media (min-width: 560px) and (orientation: landscape) {
  .login-container {
    width: 332px;
    margin-top: 10.1rem;
  }
}

@media (min-width: 560px) and (orientation: portrait) {
  .login-container {
    width: 332px;
    margin-top: 27.1rem;
  }
}

@media (min-width: 980px) {
  .login-container {
    width: 366px;
    margin-top: 10.4rem;
  }
}

.login-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 366px
}

@media (max-width: 560px) {
  .login-container form {
    width: auto
  }
}

.title {
  font-family: var(--se-font);
  font-size: 2rem; 
  line-height: 25px;
  color: var(--on-charcoal-gray);
  margin-bottom: 1.4rem;
}

@media (min-width: 560px) {
  .title {
    font-size: 3.2rem;
  }
}

.input-wrapper {
  position: relative;
  margin: 1.8rem 0;
}

.input-wrapper.full-width {
  width: 100%;
}

.input-wrapper.full-width input {
  width: 100%;
}

.input-wrapper .input-label {
  min-width: 23rem;
  position: relative;
  min-height: 6.2rem;
  display: flex;
  border: 1px solid var(--on-middle-gray);
  padding: 1.2rem 1.6rem 1.2rem 1.6rem;
  border-radius: 2px;
  align-items: flex-end;

  /* secondary */
  background-color: var(--on-white);
  border-color: var(--on-white);
}

.input-wrapper .input-label span {
  font-family: var(--se-font);
  user-select: none;
  pointer-events: none;
  position: absolute;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  transition: top 0.2s, font-size 0.2s, color 0.2s;
}

.input-wrapper .input-label span:not(.input-filled) {
  top: 50%;
  font-size: 1.4rem;
  line-height: 2rem;
}

.input-wrapper .input-label input[type="password"] + span {
  padding-right: 3rem;
}

.input-filled {
  top: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.input-wrapper .input-label input {
  height: fit-content;
  border: none;
  font-family: var(--se-font-semi);
  font-size: 1.4rem;
  line-height: 2rem;
  background: transparent;
  font-weight: 600;
}

.input-wrapper .input-label input[type="password"] {
  letter-spacing: 0.4rem;
  padding-right: 3rem;
}

.input-wrapper .input-label input:focus + span {
  top: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.input-wrapper .input-label input:not(:focus) + span:not(.input-filled) {
  top: 50%;
}

.input-wrapper button {
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  z-index: 1;
  transform: translate(0, -50%);
  border: none;
  background: transparent;
  cursor: pointer;
}

.actions-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.2rem;
  width: 100%;
  height: 8rem;
}

@media (min-width: 560px) {
  .actions-container {
    flex-direction: row;
    height: auto;
  }

  .actions-container-vertical {
    flex-direction: column;
  }
}

.actions-container a {
  font-family: var(--se-font);
  font-size: 1.2rem;
  text-decoration: underline;
  color: var(--on-graphite-gray);
  text-align: start;
}

.actions-container button {
  min-width: 14rem;
  padding: 1.2rem 1.6rem;
  border-radius: 2px;
  border: 1px solid var(--on-charcoal-gray);
  font-family: var(--se-font-semi);
  font-size: 1.6rem;
  line-height: 1.9rem;
  font-weight: bold;
  cursor: pointer;
}

.forgot-password-label {
  margin-right: 80px;
}
@media (max-width: 560px) {
  .forgot-password-label {
    margin-right: 0;
    margin-top: 24px;
  }
}
@media (max-width: 560px) {
  .actions-container-login_div {
    width: 100%;
  }
}

.actions-container button label {
  margin-bottom: 0;
}

.actions-container button:disabled {
  cursor: not-allowed;
}

.actions-container button.primary {
  background-color: var(--on-orange);
  color: var(--on-white);
  border-color: var(--on-orange);
}

.actions-container button.primary:hover {
  background-color: var(--on-charcoal-gray);
  border-color: var(--on-charcoal-gray);
}

.actions-container button.primary:active {
  background-color: var(--on-graphite-gray);
  border-color: var(--on-graphite-gray);
}

.actions-container button.primary:disabled {
  background-color: var(--on-middle-gray-50);
  color: var(--on-graphite-gray);
  border-color: transparent;
}

.actions-container button.primary.full-width {
  width: 17.2rem;
}


@media (max-width: 560px) {
  .actions-container button.primary.full-width {
    width: 100%;
  }
}

.actions-container button.secondary {
  background-color: transparent;
  color: var(--on-charcoal-gray);
  border-color: var(--on-charcoal-gray);
}

.actions-container button.secondary:hover {
  background-color: var(--on-charcoal-gray);
  color: var(--on-white);
  border-color: var(--on-charcoal-gray);
}

.actions-container button.secondary.full-width {
  width: 17.2rem;
}

.actions-align-center {
  justify-content: center;
}

#provider-input-error-message {
  display: none;
  width: 100%;
  color: var(--on-red);
  font-size: 1.2rem;
  margin-top: 5px;
}

.kc-feedback-text {
  font-family: var(--se-font-sans);
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--on-red);
}

.login-totp-text {
  font-size: 1.6rem;
  font-family: var(--se-font-semi);
  line-height: 1;
  color: #666666;
}

.login-totp-text-default {
  font-size: 1.6rem;
  font-family: var(--se-font);
  line-height: 1;
  color: #666666;
}

.smsCode {
  text-align: center;
  line-height: 80px;
  font-size: 50px;
  border: solid 1px #AEAEAE;
  width:100%;
  outline: none;
  border-radius: 3px;
}

.invalidCodeError .smsCode  {
  border: solid 1px #FE5A59!important;
}

.btn-totp-login {
  padding: 1.5rem 11rem!important;
  background: #DBDBDB;
  font-size: 1.8rem;
  font-weight: bold;
}

.btn-totp-login-orange {
  padding: 1.5rem 11rem!important;
  background: var(--on-orange);
  font-size: 1.8rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
}

@media screen and (min-width: 468px) and (max-width: 810px ) {
  .btn-totp-login {
    padding: 1rem 5.5rem!important;
    background: #DBDBDB;
    font-size: 1.6rem;
    font-weight: bold;
  }

  .btn-totp-login-orange {
    padding: 1rem 5.5rem!important;
    background: var(--on-orange);
    font-size: 1.6rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
  }
}

.login-config-heading {
  font-size: 3.6rem;
  font-family: var(--se-font-semi);
}

.config-card {
  background: #fff;
  height: 100%;
  min-width: 298px;
  max-width: 366px;
  gap: 22px;

  #number {
   filter: brightness(0) saturate(100%) invert(43%) sepia(72%) saturate(470%) hue-rotate(93deg) brightness(93%) contrast(87%);
  }
}

.kc-header-wrapper-div {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.kc-header-div {
  width: 100%;
}

.kc-select-wrapper {
  position: relative;
  user-select: none;
  font-family: var(--se-font);
}

#kc-content {
  width: 100% !important;
}

@media (max-width: 560px) {
  .kc-select-wrapper-desktop {
    display: none;
  }
}

@media (min-width: 560px) {
  .kc-select-wrapper-mobile {
    display: none;
  }
}

.kc-select-wraper-div {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 560px) {
  .kc-select-wraper-div {
    display: none;
  }
}

.select {
  position: relative;
  display: flex;
  flex-direction: column;
}

.select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 300;
  color: var(--on-graphite-gray);
  height: 60px;
  line-height: 60px;
  background: inherit;
  cursor: pointer;
}

.select__trigger span {
  margin: 0 10px;
}

.select__trigger-image {
  width: 20px;
  height: 20px;
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  background: inherit;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
}
.select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  background-color: var(--on-white);
  font-family: var(--se-font);
}
.custom-option {
  position: relative;
  display: block;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 300;
  color: var(--on-graphite-gray);
  line-height: 30px;
  cursor: pointer;
  transition: all 0.5s;
}
.custom-option:hover {
  cursor: pointer;
  background-color: #b2b2b2;
}

.custom-option.selected::after {
  content: "";
  background-image: url("../img/check-fill.svg");
  background-repeat: no-repeat;
  height: 24px;
  width: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.arrow {
  position: relative;
  display: flex;
  align-items: center;
}

.open .arrow {
  transform: rotate(180deg);
}

@media (max-width: 560px) {
  .arrow-image {
    display: none;
  }
}

.color {
  path#number {
    filter: brightness(0) saturate(100%) invert(43%) sepia(72%) saturate(470%) hue-rotate(93deg) brightness(93%) contrast(87%);
  }  
}
