/* developers-halpas-production/auth-loading.css */
body.auth-loading #login,
body.auth-loading #portal {
  visibility: hidden;
}

body.auth-loading {
  background: #050505;
}

.portal-loader {
  display: none;
}

body.auth-loading .portal-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #050505;
  color: #fff;
}

.portal-loader .loader-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #050505;
  font: 500 13px "DM Mono", monospace;
}

.portal-loader > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.portal-loader strong {
  font-size: 17px;
}

.portal-loader span {
  color: #aaa;
  font-size: 13px;
}

.portal-loader > i {
  width: 18px;
  height: 18px;
  border: 2px solid #555;
  border-top-color: #fff;
  border-radius: 50%;
  animation: portal-loader-spin .8s linear infinite;
}

@keyframes portal-loader-spin {
  to { transform: rotate(360deg); }
}