/* Sherpa Provider App - Web Splash Screen Styles */
/* Extracted from inline styles for CSP compliance */

html {
  height: 100%
}

body {
  margin: 0;
  min-height: 100%;
}

.cover {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

/* Splash screen animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.85;
  }
}

#splash {
  animation: fadeIn 0.6s ease-in;
}

#splash img {
  animation: breathe 2s ease-in-out infinite;
}
