/*
 * Marketing/Unauthenticated User Stylesheet
 * Includes theme styles for landing pages and professional navigation
 */

/* Import marketing theme styles */
@import "theme.css";
@import "legal.css";

/* Flash Messages Container */
.flash-messages-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 1000;
  max-width: 400px;
  width: calc(100vw - 40px);
}

@media (max-width: 768px) {
  .flash-messages-container {
    top: 70px;
    right: 10px;
    left: 10px;
    width: calc(100vw - 20px);
    max-width: none;
  }
}