@font-face{
  font-family: 'IBM Plex Sans';
  src: url('IBMPlexSans-Regular.ttf') format('truetype');
}

.login {
  width: 250px;
  padding: 5px 0px;
  border-radius: 8px;
  border: 1px solid #1074AF;
  background-color: #1074AF;;

  font-family: 'IBM Plex Sans';
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;

  color: #FFFFFF;
  position: relative;
}

.login-container { 
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'IBM Plex Sans';
  width: 750px;
  border: 1px solid #D8E0E6;
  border-radius: 8px;
  padding: 40px;
  margin: 30px auto;
}

.login-container p{
  font-family: 'IBM Plex Sans';
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  color: #101444;
  margin: 0px;
}

.login-container input{
    position: static;
    width: 250px;
    height: 35px;
    background: #FFFFFF;
    border: 1px solid #1074AF;
    border-radius: 8px;
    margin: 20px 0px 2px 0px;
    padding: 5px 10px;
}

.loading .button-text {
  visibility: hidden;
  opacity: 0;
}

.loading .login-container {
  visibility: hidden;
  opacity: 0;
}

.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: loading-spinner 1s ease infinite;
}

.login-body::after {
  border-top-color: #101444;
}

.token{
  position: relative;
  padding-top: 20px;
  color: #1074AF;
  font-family: 'IBM Plex Sans';
  font-weight: 500;
  font-size: 22px;
}

.token::after{
  border-top-color: #101444;
  top: 20px;
}

@keyframes loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

.token-error{
  color: red;
  font-size: 16px;
}

#error {
  color: red;
  font-size: 10px;
  width: 250px;
  margin-bottom: 20px;
  font-family: 'IBM Plex Sans';
}