:root {
  color-scheme: dark;
  background: #07111d;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #07111d;
  color: #f5f8fc;
  font-family: Arial, Helvetica, sans-serif;
}

#flutterLaunch {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  place-items: center;
  padding: 24px;
  background: #07111d;
}

.flutter-launch__panel {
  display: flex;
  width: min(100%, 360px);
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  border: 1px solid #223249;
  border-radius: 20px;
  background: #0b1726;
  box-shadow: 0 24px 64px rgb(0 0 0 / 28%);
  text-align: center;
}

.flutter-launch__mark {
  display: block;
  border-radius: 14px;
}

.flutter-launch__spinner {
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  border: 3px solid #223249;
  border-top-color: #19d8f2;
  border-radius: 50%;
  animation: flutter-launch-spin 900ms linear infinite;
}

#flutterLaunchMessage {
  margin: 0;
  color: #f5f8fc;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

#flutterLaunch.flutter-launch--failed .flutter-launch__spinner {
  display: none;
}

#flutterLaunch.flutter-launch--failed #flutterLaunchMessage {
  color: #ff7d73;
}

@keyframes flutter-launch-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flutter-launch__spinner {
    animation: none;
  }
}
