/* ========================================
   СТРАНИЦА ВХОДА
   ======================================== */
body.login-page {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: var(--bg-body);
  min-height: 100vh;
  flex-direction: unset !important;
}

body.login-page .sidebar,
body.login-page .page-header {
  display: none !important;
}

body.login-page .main-content {
  margin-left: 0 !important;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-default);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.logo img {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.login-container input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid var(--border-input);
  border-radius: 6px;
  font-size: 16px;
  background: var(--bg-input);
  color: var(--text-primary);
}

.login-container input:focus {
  outline: none;
  border-color: var(--accent-yellow);
  box-shadow: 0 0 0 2px var(--login-input-focus-shadow);
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: var(--accent-yellow);
  color: var(--text-primary);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s;
}

.login-btn:hover {
  background: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(241, 196, 15, 0.3);
}

/* ========================================
   СТРАНИЦА ОТДЕЛОВ
   ======================================== */
.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.department-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dept);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.department-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--shadow-default);
}

.dept-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bg-tab), var(--border-form));
  border-bottom: 1px solid var(--border-dept);
}

.dept-header h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-primary);
}

.dept-actions {
  display: flex;
  gap: 4px;
}

.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  font-size: 16px;
  transition: background 0.2s;
  color: var(--text-primary);
}

.btn-icon:hover {
  background: var(--bg-hover);
}

.dept-body {
  padding: 16px 20px;
}

.dept-desc {
  color: var(--text-description);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.dept-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.stat {
  font-size: 13px;
  color: var(--text-label);
}

.stat strong {
  color: var(--text-primary);
}

.dept-status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
}

.dept-status.active {
  background: var(--dept-status-active-bg);
  color: var(--dept-status-active-text);
}

.dept-status.inactive {
  background: var(--dept-status-inactive-bg);
  color: var(--dept-status-inactive-text);
}

.edit-form {
  padding: 16px 20px;
  border-top: 1px solid var(--border-dept);
  background: var(--bg-form);
}

.btn-view-dept {
  margin-top: 10px;
  padding: 8px 16px;
  background: var(--btn-view-dept-gradient);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
}

.btn-view-dept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* ========================================
   СТРАНИЦА ОТЧЁТОВ
   ======================================== */
.report-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.report-item {
  padding: 14px;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}

.report-item:hover {
  background: var(--bg-hover);
  transform: translateX(4px);
}

.report-item:last-child {
  border-bottom: none;
}

.report-item.selected {
  background: var(--bg-selected);
  border-left: 4px solid var(--accent-yellow);
}

/* ========================================
   НАВИГАЦИОННАЯ ПАНЕЛЬ
   ======================================== */
body.navigation-page .main-content {
  padding: 0;
}

body.navigation-page .page-header {
  margin: 20px;
  border-radius: 16px;
}

/* === DASHBOARD === */
.dashboard {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 20px 20px;
}

/* Блок дашборда (раздел) — на всю строку */
.dashboard-block {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--shadow-sm);
  overflow: hidden;
  width: 100%;
}

/* Заголовок раздела — на всю ширину */
.dashboard-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--bg-tab), var(--border-form));
  border-bottom: 2px solid var(--accent-yellow);
}

.dashboard-block-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

/* Содержимое блока */
.dashboard-block-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  padding: 24px;
}

/* Квадратные карточки с градиентом */
.dashboard-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  aspect-ratio: 1 / 1;
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow-default);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--shadow-card-before), transparent);
  pointer-events: none;
}

.dashboard-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px var(--shadow-strong);
}

.dashboard-card:active {
  transform: translateY(0) scale(0.98);
}

/* Иконка карточки */
.card-icon {
  font-size: 36px;
  line-height: 1;
}

.card-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Статистика на карточке */
.card-stat {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

/* Закрепление (звёздочка) */
.card-pin {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.4;
  z-index: 2;
  transition: opacity 0.2s, transform 0.2s;
  user-select: none;
}

.card-pin:hover {
  opacity: 1;
  transform: scale(1.2);
}

.card-pin.pinned,
.dashboard-card:hover .card-pin {
  opacity: 1;
}

/* Цвета карточек */
.card-tasks { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.card-departments { background: linear-gradient(135deg, #1abc9c, #16a085); }
.card-processes { background: linear-gradient(135deg, #f39c12, #e67e22); }
.card-delivery { background: linear-gradient(135deg, #3498db, #2980b9); }
.card-reports { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.card-objects { background: linear-gradient(135deg, #f39c12, #d35400); }
.card-products { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.card-users { background: linear-gradient(135deg, #3498db, #2980b9); }
.card-bonuses { background: linear-gradient(135deg, #f1c40f, #e67e22); }
.card-settings { background: linear-gradient(135deg, #7f8c8d, #6c7a89); }
.card-tech-objects { background: linear-gradient(135deg, #e67e22, #d35400); }
.card-tech-delivery { background: linear-gradient(135deg, #3498db, #2980b9); }
.card-prod-delivery { background: linear-gradient(135deg, #3498db, #2980b9); }
.card-pnr-delivery { background: linear-gradient(135deg, #4e73df, #224abe); }
.card-montazh-delivery { background: linear-gradient(135deg, #1cc88a, #13855c); }
.card-tech-delivery { background: linear-gradient(135deg, #5a67d8, #2b6cb0); }
.card-orders { background: linear-gradient(135deg, #e67e22, #d35400); }
.card-dogovory { background: linear-gradient(135deg, #f39c12, #e67e22); }
.card-order-delivery { background: linear-gradient(135deg, #1abc9c, #16a085); }
.card-order-reports { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
/* Администрирование — градиент */
.dashboard-block.admin-block .dashboard-card { background: linear-gradient(135deg, #34495e, #2c3e50); }

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .dashboard {
    gap: 12px;
  }

  .dashboard-block-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .card-icon {
    font-size: 28px;
  }

  .card-label {
    font-size: 11px;
  }
}

/* ========================================
   ГЛОБАЛЬНЫЙ ПОИСК
   ======================================== */
.global-search {
  position: relative;
  margin: 0 20px 16px 20px;
  z-index: 200;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper input {
  width: 100%;
  padding: 14px 40px 14px 44px;
  border: 2px solid var(--border-form);
  border-radius: 12px;
  font-size: 15px;
  background: var(--bg-card);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.search-input-wrapper input:focus {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.15);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  pointer-events: none;
  opacity: 0.5;
}

.search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
  display: none;
  line-height: 1;
}

.search-clear:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 8px 32px var(--shadow-md);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  border: 1px solid var(--border-light);
  z-index: 201;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.15s;
  border-bottom: 1px solid var(--border-light);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: var(--bg-hover);
}

.search-result-type {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  color: white;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-result-name {
  font-weight: 500;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-detail {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}

.search-result-item mark {
  background: var(--accent-yellow);
  color: var(--text-primary);
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 600;
}

.search-empty {
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ========================================
   НЕДАВНИЕ
   ======================================== */
.recent-section {
  margin: 0 20px 16px 20px;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow-sm);
  padding: 16px 20px;
}

.recent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.recent-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin: 0;
}

.recent-clear {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

.recent-clear:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.recent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recent-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-hover);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 13px;
  transition: all 0.15s;
}

.recent-item:hover {
  background: var(--accent-yellow);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.recent-icon {
  font-size: 14px;
}

.recent-name {
  font-weight: 500;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-detail {
  color: var(--text-muted);
  font-size: 12px;
}

/* ========================================
   ИЗБРАННОЕ
   ======================================== */
.pinned-section {
  margin: 0 20px 16px 20px;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow-sm);
  padding: 16px 20px;
}

.pinned-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
}

.pinned-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pinned-cards .dashboard-card {
  aspect-ratio: unset;
  min-width: 140px;
  flex: 0 0 auto;
  flex-direction: row;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
}

.pinned-cards .dashboard-card .card-icon {
  font-size: 20px;
}

.pinned-cards .dashboard-card .card-label {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.pinned-cards .dashboard-card .card-stat {
  display: none;
}

.pinned-cards .dashboard-card .card-pin {
  position: static;
  opacity: 1;
  font-size: 14px;
  margin-left: 4px;
}

/* ========================================
   СВОРАЧИВАЕМЫЕ СЕКЦИИ
   ======================================== */
.collapsible-section {
  background: var(--bg-card);
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 1px 4px var(--shadow-default);
  margin-bottom: 12px;
}

.collapsible-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding-bottom: 8px;
}

.collapsible-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-primary);
}

.toggle-icon {
  transition: transform 0.2s;
  font-size: 16px;
  color: var(--text-muted);
}

.collapsed .toggle-icon {
  transform: rotate(-180deg);
}

.expanded .collapsible-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.section-content {
  margin-top: 16px;
  display: none;
}

.expanded .section-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ========================================
   СТРАНИЦА ОБЪЕКТОВ
   ======================================== */
body.objects-page {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.objects-page .main-content {
  padding: 20px;
  height: 100%;
}

.objects-list {
  flex: 1;
  overflow-y: auto;
  background: var(--bg-card);
  border-radius: 8px;
  padding: 10px;
}

.object-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}

.object-item:hover {
  background: var(--bg-hover);
  transform: translateX(4px);
}

.object-item.selected {
  background: var(--bg-selected);
  border-left: 4px solid var(--accent-yellow);
}

.object-content {
  flex: 1;
  min-width: 0;
}

.object-name {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
}

.object-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.object-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}


.object-info {
  background: var(--bg-card);
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px var(--shadow-default);
}

.info-line {
  margin: 4px 0;
  font-size: 16px;
}

.info-label {
  font-weight: 600;
  color: var(--text-primary);
}

/* ========================================
   ОТЧЁТЫ
   ======================================== */
.report-header {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.unit-price {
  font-weight: normal;
  color: var(--text-muted);
  font-size: 0.9em;
}

.remaining-badge {
  color: #e67e22;
  font-weight: 600;
}

.report-meta {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
}

/* ========================================
   ЗАДАЧИ
   ======================================== */
.tasks-list {
  width: 100%;
  margin: 0;
  padding: 0;
}

.task-item {
  background: var(--bg-card);
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 1px 4px var(--shadow-default);
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.task-item:hover {
  box-shadow: 0 2px 8px var(--shadow-hover);
  transform: translateY(-2px);
}

.task-item.selected {
  background-color: var(--bg-selected);
  border-left: 4px solid var(--accent-yellow);
}

.task-header {
  font-weight: bold;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.task-meta {
  font-size: 14px;
  color: var(--text-label);
  line-height: 1.5;
}

.status-в-работе { color: #3498db; font-weight: bold; }
.status-завершено { color: #2ecc71; font-weight: bold; }
.status-ожидает { color: #f39c12; font-weight: bold; }
.status-new { color: var(--color-warning); font-weight: bold; }
.status-in_progress { color: var(--color-info); font-weight: bold; }
.status-done { color: var(--color-success); font-weight: bold; }

/* Канбан */
.kanban-board {
  display: flex;
  gap: 24px;
  padding: 10px 0;
  overflow-x: auto;
}

.kanban-column {
  min-width: 260px;
  background: var(--bg-tab);
  border-radius: 8px;
  padding: 16px;
  position: relative;
}

.kanban-column:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: -12px;
  height: 100%;
  width: 1px;
  background: var(--border-kanban);
}

.kanban-column h4 {
  margin-top: 0;
  margin-bottom: 16px;
  text-align: center;
  color: var(--text-primary);
  font-size: 16px;
}

.kanban-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100px;
  padding: 8px;
  border-radius: 6px;
}

.kanban-card {
  background: var(--bg-card);
  padding: 14px;
  border-radius: 8px;
  box-shadow: 0 1px 3px var(--shadow-default);
  cursor: grab;
  transition: all 0.2s;
}

.kanban-card:hover {
  box-shadow: 0 2px 6px var(--shadow-hover);
  transform: translateY(-2px);
}

.kanban-card.selected {
  background-color: var(--bg-selected);
  border-left: 4px solid var(--accent-yellow);
}

.kanban-card:active {
  cursor: grabbing;
}

.kanban-title {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.kanban-meta small {
  color: var(--text-muted);
  font-size: 13px;
}

.kanban-empty {
  color: var(--kanban-empty-text);
  font-style: italic;
  text-align: center;
  padding: 20px 0;
}

.drag-over {
  background-color: var(--drag-over-bg) !important;
  border: 2px dashed var(--drag-over-border);
}

/* ========================================
   АРХИВ
   ======================================== */
.archive-toggle {
  background: var(--bg-card);
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 4px var(--shadow-default);
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

/* ========================================
   МОБИЛЬНОЕ МЕНЮ И ОВЕРЛЕЙ
   ======================================== */
.mobile-menu-btn {
  display: none;
  background: var(--accent-yellow);
  border: none;
  border-radius: 8px;
  width: 56px;
  height: 56px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: var(--accent-orange);
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Оверлей для мобильного меню */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--shadow-modal);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* ========================================
   СТРАНИЦА РЕГИСТРАЦИИ
   ======================================== */
.register-container {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px var(--shadow-default);
  width: 100%;
  max-width: 400px;
}

.register-container .logo {
  text-align: center;
  margin-bottom: 20px;
}

.register-container .logo img {
  max-width: 150px;
  height: auto;
}

.register-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.register-container input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid var(--border-input);
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 14px;
  background: var(--bg-input);
  color: var(--text-primary);
}

.register-container input:focus {
  outline: none;
  border-color: var(--color-info);
}

.register-btn {
  width: 100%;
  padding: 12px;
  background: var(--btn-register-bg);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s;
}

.register-btn:hover {
  background: var(--btn-register-hover);
}

.login-link {
  text-align: center;
  margin-top: 20px;
  color: var(--text-muted);
}

.login-link a {
  color: var(--login-link-color);
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}