/* Branded loader styles for /verify and /validate routes */
/* Matches Redux branded loader styling from loader.style.ts */

#loaderContainer.branded-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 28, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
}

.branded-loader-card {
  width: 311px;
  padding: 24px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.branded-loader-image {
  height: 356px;
  object-fit: cover;
  border-radius: 8px;
}

.branded-loader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
}
