.app-initial-splash {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.app-initial-splash__frame {
  position: relative;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-initial-splash__spinner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(31, 67, 134, 0.18);
  border-top-color: #1f4386;
  animation: app-initial-splash-spin 0.85s linear infinite;
}

.app-initial-splash__logo {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.12);
}

@keyframes app-initial-splash-spin {
  to {
    transform: rotate(360deg);
  }
}
