<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Standard theme for login and unauthenticated pages
 * This provides a clean, professional appearance without custom user themes
 * or inappropriate high-contrast settings
 */

:root {
  /* Base colors - Zixt brand colors */
  --bs-primary: #FF1A43; /* Zixt logo red */
  --bs-primary-rgb: 255, 26, 67;
  --bs-primary-dark: #D5143A; /* Darker red for hover states */
  --bs-primary-light: #FF4D6E; /* Lighter red for accents */
  
  /* Secondary colors - complementary to Zixt red */
  --bs-secondary: #222222; /* Zixt logo dark text color */
  --bs-secondary-rgb: 34, 34, 34;
  --bs-secondary-dark: #1a1a1a;
  --bs-secondary-light: #444444;
  
  /* Semantic colors - adjusted to match Zixt brand */
  --bs-success: #28a745;
  --bs-success-rgb: 40, 167, 69;
  --bs-info: #158bab; /* Adjusted to complement the red */
  --bs-info-rgb: 21, 139, 171;
  --bs-warning: #ffc107;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger: #FF1A43; /* Using the Zixt red for danger */
  --bs-danger-rgb: 255, 26, 67;
  
  /* Neutral colors for dark theme - enhanced for Zixt brand */
  --bs-body-bg: #121212; /* Darker background for better contrast with Zixt red */
  --bs-body-color: #f8f9fa;
  --bs-body-bg-rgb: 18, 18, 18;
  --bs-body-color-rgb: 248, 249, 250;
  
  /* Component colors - adjusted to match brand */
  --bs-card-bg: #1e1e1e; /* Slightly lighter than body background */
  --bs-card-border-color: rgba(255, 26, 67, 0.15); /* Subtle red tint */
  --bs-nav-bg: #0f0f0f; /* Darker nav for emphasis */
  --bs-input-bg: #2a2a2a; /* Slightly lighter for form fields */
  --bs-input-color: #f8f9fa;
  --bs-dropdown-bg: #1e1e1e;
  --bs-dropdown-color: #f8f9fa;
  --bs-border-color: #333333; /* Darker border color */
}

/* Reset high contrast settings */
body {
  background-color: var(--bs-body-bg) !important;
  color: var(--bs-body-color) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--bs-body-color);
  font-weight: 500;
}

/* Primary Button - Zixt brand styling */
.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: white;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  border-radius: 0.375rem;
  box-shadow: 0 2px 10px rgba(255, 26, 67, 0.2);
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--bs-primary-dark);
  border-color: var(--bs-primary-dark);
  box-shadow: 0 4px 12px rgba(255, 26, 67, 0.3);
  transform: translateY(-1px);
}

/* Secondary Button - Zixt brand styling */
.btn-secondary {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
  color: white;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--bs-secondary-dark);
  border-color: var(--bs-secondary-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

/* Danger Button - using Zixt red */
.btn-danger {
  background-color: var(--bs-danger);
  border-color: var(--bs-danger);
  box-shadow: 0 2px 10px rgba(255, 26, 67, 0.2);
}

.btn-danger:hover, .btn-danger:focus {
  background-color: var(--bs-primary-dark);
  border-color: var(--bs-primary-dark);
  box-shadow: 0 4px 12px rgba(255, 26, 67, 0.3);
}

/* Card styling - enhanced for Zixt brand */
.card {
  background-color: var(--bs-card-bg);
  border-color: var(--bs-card-border-color);
  border-width: 1px;
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 26, 67, 0.05);
  overflow: hidden;
}

.card-header {
  border-bottom: 1px solid var(--bs-card-border-color);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem 1.25rem;
}

.card-header.bg-primary {
  background-color: var(--bs-primary) !important;
  border-bottom: none;
}

/* Add subtle red glow effect to card on hover */
.card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 26, 67, 0.1), 0 0 15px rgba(255, 26, 67, 0.15);
  transition: all 0.3s ease;
}

/* Form controls - enhanced for Zixt brand */
.form-control, .form-select {
  background-color: var(--bs-input-bg);
  color: var(--bs-input-color);
  border-color: var(--bs-border-color);
  border-radius: 0.375rem;
  padding: 0.625rem 0.75rem;
  transition: all 0.2s ease-in-out;
}

.form-control:focus, .form-select:focus {
  background-color: var(--bs-input-bg);
  color: var(--bs-input-color);
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25), 0 0 10px rgba(255, 26, 67, 0.1);
}

/* Input groups - styled for Zixt brand */
.input-group-text {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border-color: var(--bs-border-color);
  color: var(--bs-primary);
  border-radius: 0.375rem;
}

/* Form label enhancement */
.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

/* Links - Zixt brand styling */
a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

a:hover {
  color: var(--bs-primary-light);
  text-decoration: none;
}

/* Animated link underline effect */
a.nav-link, .footer a:not(.social-icon) {
  position: relative;
}

a.nav-link:after, .footer a:not(.social-icon):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--bs-primary);
  transition: width 0.3s ease;
}

a.nav-link:hover:after, .footer a:not(.social-icon):hover:after {
  width: 100%;
}

/* Navbar - Zixt brand styling */
.navbar {
  background-color: var(--bs-nav-bg) !important;
  border-bottom: 1px solid rgba(255, 26, 67, 0.1);
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  color: var(--bs-body-color);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  margin-right: 0.5rem;
  filter: drop-shadow(0 0 5px rgba(255, 26, 67, 0.3));
}

/* Alerts */
.alert {
  border-radius: 0.375rem;
}

/* Lists */
.list-group-item {
  background-color: var(--bs-card-bg);
  border-color: var(--bs-card-border-color);
  color: var(--bs-body-color);
}

/* Table */
.table {
  color: var(--bs-body-color);
  border-color: var(--bs-border-color);
}

/* Force text contrast */
.text-muted {
  color: #adb5bd !important;
}

/* Force standard contrast, override any high-contrast colors */
:root [style*="color"], 
:root [style*="background-color"] {
  filter: none !important;
}

/* Force proper borders in normal mode, not high contrast */
.border, [class*="border-"] {
  border-color: var(--bs-border-color) !important;
}

/* Footer for landing and login pages - Zixt branding */
.footer {
  background-color: var(--bs-nav-bg) !important;
  color: var(--bs-body-color);
  border-top: 1px solid rgba(255, 26, 67, 0.1);
  margin-top: auto;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.footer .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 26, 67, 0.1);
  transition: all 0.3s ease;
}

.footer .social-icon:hover {
  background: rgba(255, 26, 67, 0.2);
  transform: translateY(-3px);
}

/* Small footer text with brand accent */
.footer .text-secondary {
  color: #888 !important;
}

.footer .text-secondary a {
  color: var(--bs-primary);
}

/* Landing page enhancements for Zixt branding */
.landing-page .hero {
  background: linear-gradient(45deg, #121212, #1a1a1a);
  position: relative;
  overflow: hidden;
}

.landing-page .typing-animation {
  color: var(--bs-primary);
  font-weight: bold;
}

.landing-page .feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 26, 67, 0.1);
}

.landing-page .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 26, 67, 0.1);
  border-color: rgba(255, 26, 67, 0.2);
}

.landing-page .feature-icon-container {
  position: relative;
  display: inline-block;
}

.landing-page .feature-icon-container i {
  color: var(--bs-primary);
  position: relative;
  z-index: 2;
}

/* Pulsing animation for buttons and icons */
.pulse-button {
  position: relative;
  box-shadow: 0 0 0 0 rgba(255, 26, 67, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 26, 67, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 26, 67, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 26, 67, 0);
  }
}

/* Enhanced security elements */
.security-animation-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 26, 67, 0.03) 0%, transparent 70%);
  z-index: 1;
}

/* Stats counter styling */
.stat-item {
  padding: 1rem;
}

.stat-item i {
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.stat-item .stat-text {
  color: #aaa;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}</pre></body></html>