@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Default Theme: Esmeralda Forest (Corporate Green) */
  --bg-gradient: radial-gradient(circle at 50% 0%, #032c22 0%, #064e3b 45%, #051612 100%);
  --text-primary: #e6f4ea;
  --text-secondary: #a7f3d0;
  
  --card-bg: rgba(6, 78, 59, 0.22);
  --card-border: rgba(52, 211, 153, 0.18);
  --card-hover-bg: rgba(52, 211, 153, 0.15);
  --card-hover-border: rgba(52, 211, 153, 0.45);
  
  --spotlight-border: #34d399;
  
  /* Orb Colors */
  --orb-1-color: rgba(16, 185, 129, 0.25);
  --orb-2-color: rgba(4, 120, 87, 0.2);

  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-lg: 16px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
}

/* Deep Night Blue Theme */
body.theme-midnight {
  --bg-gradient: radial-gradient(circle at 50% 0%, #0c1a30 0%, #070e1b 60%, #020408 100%);
  --text-primary: #f0f5ff;
  --text-secondary: #93c5fd;
  --card-bg: rgba(30, 41, 59, 0.3);
  --card-border: rgba(99, 102, 241, 0.25);
  --card-hover-bg: rgba(99, 102, 241, 0.18);
  --card-hover-border: rgba(129, 140, 248, 0.55);
  --spotlight-border: #818cf8;
  --orb-1-color: rgba(99, 102, 241, 0.22);
  --orb-2-color: rgba(29, 78, 216, 0.18);
}

/* Corporate Steel Grey Theme */
body.theme-steel {
  --bg-gradient: radial-gradient(circle at 50% 0%, #1f2937 0%, #111827 55%, #030712 100%);
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --card-bg: rgba(55, 65, 81, 0.25);
  --card-border: rgba(156, 163, 175, 0.2);
  --card-hover-bg: rgba(156, 163, 175, 0.15);
  --card-hover-border: rgba(209, 213, 219, 0.45);
  --spotlight-border: #d1d5db;
  --orb-1-color: rgba(156, 163, 175, 0.15);
  --orb-2-color: rgba(75, 85, 99, 0.18);
}

/* Space Glassmorphism 🌌 */
body.theme-glass {
  --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --card-bg: rgba(255, 255, 255, 0.07);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover-bg: rgba(255, 255, 255, 0.12);
  --card-hover-border: rgba(255, 255, 255, 0.2);
  --spotlight-border: #818cf8;
  --orb-1-color: rgba(99, 102, 241, 0.22);
  --orb-2-color: rgba(29, 78, 216, 0.18);
}

/* Gris Oscuro Minimalista 🖤 */
body.theme-dark {
  --bg-gradient: #0f172a;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --card-bg: #1e293b;
  --card-border: #334155;
  --card-hover-bg: #334155;
  --card-hover-border: #475569;
  --spotlight-border: #6366f1;
  --orb-1-color: rgba(99, 102, 241, 0.05);
  --orb-2-color: rgba(29, 78, 216, 0.05);
}

/* Blanco Corporativo Claro 🤍 */
body.theme-light {
  --bg-gradient: #f8fafc;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --card-hover-bg: #f1f5f9;
  --card-hover-border: #cbd5e1;
  --spotlight-border: #6366f1;
  --orb-1-color: rgba(99, 102, 241, 0.03);
  --orb-2-color: rgba(29, 78, 216, 0.03);
}

/* Esmeralda Profesional 💚 */
body.theme-emerald {
  --bg-gradient: radial-gradient(circle at 50% 0%, #032c22 0%, #064e3b 45%, #051612 100%);
  --text-primary: #e6f4ea;
  --text-secondary: #a7f3d0;
  --card-bg: rgba(6, 78, 59, 0.22);
  --card-border: rgba(52, 211, 153, 0.18);
  --card-hover-bg: rgba(52, 211, 153, 0.15);
  --card-hover-border: rgba(52, 211, 153, 0.45);
  --spotlight-border: #34d399;
  --orb-1-color: rgba(16, 185, 129, 0.25);
  --orb-2-color: rgba(4, 120, 87, 0.2);
}

/* Atardecer Cálido 🧡 */
body.theme-sunset {
  --bg-gradient: linear-gradient(135deg, #451a03 0%, #78350f 100%);
  --text-primary: #fef3c7;
  --text-secondary: #fcd34d;
  --card-bg: rgba(245, 158, 11, 0.1);
  --card-border: rgba(245, 158, 11, 0.2);
  --card-hover-bg: rgba(245, 158, 11, 0.18);
  --card-hover-border: rgba(245, 158, 11, 0.35);
  --spotlight-border: #fbbf24;
  --orb-1-color: rgba(245, 158, 11, 0.12);
  --orb-2-color: rgba(120, 53, 15, 0.1);
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
}

body {
  background: var(--bg-gradient);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  padding: 3rem 1.5rem 2rem 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition: background 0.5s ease;
}

/* Ambient Glowing Orbs */
.background-orbs {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  -webkit-filter: blur(100px);
  opacity: 0.8;
  mix-blend-mode: screen;
  transition: background-color 0.5s ease;
}

.orb-1 {
  top: -10%;
  left: 10%;
  width: 450px;
  height: 450px;
  background-color: var(--orb-1-color);
  animation: floatOrb1 15s ease-in-out infinite alternate;
}

.orb-2 {
  bottom: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background-color: var(--orb-2-color);
  animation: floatOrb2 18s ease-in-out infinite alternate;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 30px) scale(1.1); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -60px) scale(0.95); }
}

/* Floating Actions Header */
.top-actions {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px) rotate(15deg);
  border-color: var(--card-border);
}

/* Container */
.container {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

/* Profile Section */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.profile-avatar-container {
  max-width: 240px;
  width: 100%;
  height: 80px;
  border-radius: var(--border-radius-md);
  padding: 8px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.profile-avatar-container:hover {
  transform: scale(1.02) translateY(-2px);
}

.profile-avatar {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.profile-description {
  font-size: 0.92rem;
  opacity: 0.85;
  max-width: 90%;
  line-height: 1.45;
  color: var(--text-secondary);
}

/* SURPRISE WIDGET: Employee Clock & Date */
.clock-widget {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-lg);
  padding: 0.85rem 1.5rem;
  width: 100%;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.5s ease-out;
}

.clock-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.clock-greeting {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.clock-date {
  font-size: 0.76rem;
  color: var(--text-secondary);
  opacity: 0.85;
}

.clock-time-display {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* Search Box */
.search-container {
  width: 100%;
  margin-bottom: 1.5rem;
}

.search-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 0.85rem 1.25rem;
  color: #fff;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.search-input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.45);
  border-color: var(--card-border);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.12);
}

/* Links List */
.links-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.category-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--text-secondary);
  opacity: 0.75;
  padding-left: 0.5rem;
  margin-top: 0.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Link Card */
.link-card {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.1rem 1.5rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  background: var(--card-bg);
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px -1px rgba(0, 0, 0, 0.15);
}

.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.link-card:hover::before {
  transform: translateX(100%);
}

.link-card:hover {
  transform: translateY(-3px);
  background: var(--card-hover-bg);
  border-color: var(--card-hover-border);
  box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.25);
}

.link-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  margin-right: 1.25rem;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.link-card:hover .link-icon-container {
  background-color: rgba(255, 255, 255, 0.14);
  transform: scale(1.05);
}

.link-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.link-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  text-align: left;
}

.link-description {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-top: 0.2rem;
  text-align: left;
  color: var(--text-secondary);
  line-height: 1.35;
}

.link-arrow {
  opacity: 0.4;
  transform: translateX(-5px);
  transition: var(--transition-smooth);
  flex-shrink: 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.link-card:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Spotlight pulsing effects */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.15);
    border-color: rgba(52, 211, 153, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(52, 211, 153, 0.4), 0 0 10px rgba(52, 211, 153, 0.2);
    border-color: var(--spotlight-border);
  }
}

.spotlight {
  animation: pulseGlow 2.5s infinite;
  border-width: 1.5px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Footer branding */
.footer-branding {
  margin-top: auto;
  padding: 2rem 0 1rem 0;
  font-size: 0.72rem;
  opacity: 0.55;
  text-decoration: none;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-smooth);
}

.footer-branding:hover {
  opacity: 0.9;
}

/* Responsive adjustment */
@media (max-width: 480px) {
  body {
    padding: 2.5rem 1rem 1.5rem 1rem;
  }
  .top-actions {
    top: 1rem;
    right: 1rem;
  }
  .theme-toggle-btn {
    width: 36px;
    height: 36px;
  }
  .profile-name {
    font-size: 1.45rem;
  }
  .clock-widget {
    padding: 0.75rem 1.15rem;
  }
  .clock-greeting {
    font-size: 0.85rem;
  }
  .clock-time-display {
    font-size: 1.4rem;
  }
  .link-card {
    padding: 1rem 1.25rem;
  }
  .link-icon-container {
    width: 36px;
    height: 36px;
    margin-right: 1rem;
  }
  .link-title {
    font-size: 0.98rem;
  }
  .link-description {
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   ADMIN PANEL STYLING (admin.php)
   ========================================================================== */

.admin-layout {
  display: grid;
  grid-template-columns: 280px 1fr 380px;
  height: 100vh;
  background-color: #0b0f19;
  color: #f3f4f6;
  font-family: var(--font-sans);
  overflow: hidden;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

@media (max-width: 1200px) {
  .admin-layout {
    grid-template-columns: 260px 1fr;
  }
  .phone-preview-panel {
    display: none !important;
  }
}

/* Sidebar */
.admin-sidebar {
  background-color: #0f172a;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-logo {
  height: 36px;
  max-width: 120px;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.05);
  padding: 3px;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  color: #9ca3af;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 600;
  font-size: 0.88rem;
}

.nav-item:hover, .nav-item.active {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.nav-item.active {
  background-color: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border-left: 3px solid #6366f1;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Editor Workspace */
.editor-workspace {
  padding: 2rem;
  overflow-y: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #0b0f19;
}

.workspace-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.workspace-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

/* Cards */
.admin-card {
  background-color: rgba(30, 41, 59, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-input, .form-textarea, .form-select {
  background-color: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 0.65rem 0.9rem;
  color: #fff;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: #6366f1;
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: #d1d5db;
  user-select: none;
}

.form-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #6366f1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background-color: #6366f1;
  color: #fff;
}

.btn-primary:hover {
  background-color: #4f46e5;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: #f3f4f6;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-danger {
  background-color: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  background-color: #ef4444;
  color: #fff;
}

.btn-sm {
  padding: 0.4rem 0.65rem;
  font-size: 0.75rem;
}

/* Phone Mockup Panel */
.phone-preview-panel {
  background-color: rgba(15, 23, 42, 0.45);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  height: 100%;
}

.phone-mockup {
  width: 320px;
  height: 640px;
  border: 12px solid #1f2937;
  border-radius: 40px;
  background-color: #000;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-speaker {
  width: 90px;
  height: 18px;
  background-color: #1f2937;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.phone-screen {
  flex: 1;
  border: none;
  width: 100%;
  height: 100%;
  background-color: #051612;
}

/* Login Form Styles */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #0c1524 0%, #070c14 100%);
  color: #fff;
  padding: 1.5rem;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.login-card {
  max-width: 400px;
  width: 100%;
  background: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.login-logo {
  height: 60px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-md);
  background: rgba(255,255,255,0.05);
  padding: 4px;
}

.login-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.login-subtitle {
  font-size: 0.88rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}

.alert-error {
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  text-align: left;
}
