/* ============================================================
   Tradezone — Main Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

:root {
  --red: #CF0A2C; --red-dark: #9e0821; --red-light: #ff1a3c;
  --black: #080a0e; --dark: #0f1218; --card: #141920;
  --border: #1c2332; --muted: #7a8499; --white: #eef2ff;
  --success: #00c97b; --warn: #f5a623; --blue: #1a6dff;
  --yellow: #f5a623;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ====== HEADER ====== */
header {
  background: rgba(8,10,14,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; }
.logo-phonex { font-size: 1.25rem; font-weight: 900; letter-spacing: 2px; color: var(--white); line-height: 1; }
.logo-tag {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; color: var(--red);
  background: rgba(207,10,44,0.12); border: 1px solid rgba(207,10,44,0.3);
  padding: 1px 8px; border-radius: 20px; text-transform: uppercase;
}
.logo-divider { width: 1px; height: 32px; background: var(--border); }
.hw-badge { background: var(--red); color: white; font-size: 0.62rem; font-weight: 900; padding: 3px 10px; border-radius: 4px; letter-spacing: 1px; }
.brand-credit { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--muted); letter-spacing: 1px; }
.nav-btns { display: flex; gap: 8px; }
.nav-btn {
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  padding: 7px 18px; border-radius: 8px; cursor: pointer; font-family: 'Cairo', sans-serif;
  font-size: 0.85rem; transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center;
}
.nav-btn:hover { border-color: var(--red); color: var(--white); }
.nav-btn.active { border-color: var(--red); color: var(--red); background: rgba(207,10,44,0.07); }

/* ====== MAIN ====== */
main { max-width: 1050px; margin: 0 auto; padding: 2rem 1.5rem; }

/* ====== STEPS BAR ====== */
.steps-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 4px; margin-bottom: 2.5rem; padding: 1.2rem;
  background: var(--card); border-radius: 14px; border: 1px solid var(--border);
}
.step-item { display: flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 9px; transition: all 0.3s; }
.step-item.active { background: rgba(207,10,44,0.13); border: 1px solid var(--red); }
.step-item.done { opacity: 0.55; }
.step-num {
  width: 24px; height: 24px; border-radius: 50%; background: var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700;
}
.step-item.active .step-num { background: var(--red); }
.step-item.done .step-num { background: var(--success); }
.step-label { font-size: 0.76rem; color: var(--muted); white-space: nowrap; }
.step-item.active .step-label { color: var(--white); }
.step-arrow { color: var(--border); font-size: 0.75rem; padding: 0 2px; }

/* ====== TABS ====== */
.tabs {
  display: flex; gap: 4px; background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 5px; margin: 0 auto 2rem; width: fit-content;
}
.tab-btn {
  padding: 8px 22px; border-radius: 9px; border: none; background: transparent;
  color: var(--muted); font-family: 'Cairo', sans-serif; font-size: 0.88rem;
  cursor: pointer; transition: all 0.2s; font-weight: 600;
}
.tab-btn.active { background: var(--red); color: white; }

/* ====== SECTION TITLE ====== */
.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h2 { font-size: 1.75rem; font-weight: 900; margin-bottom: 6px; }
.section-title h2 span { color: var(--red); }
.section-title p { color: var(--muted); font-size: 0.9rem; }

/* ====== PAGE ====== */
.page { display: none; }
.page.active { display: block; }

/* ====== GRID CARDS ====== */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; margin-bottom: 1.5rem; }
.models-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-bottom: 1.5rem; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-bottom: 1.5rem; }

.select-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 13px;
  padding: 1.1rem 0.9rem; text-align: center; cursor: pointer; transition: all 0.22s;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.select-card:hover { border-color: rgba(207,10,44,0.5); transform: translateY(-2px); }
.select-card.selected { border-color: var(--red); background: rgba(207,10,44,0.09); }
.select-card .card-icon { font-size: 2rem; }
.select-card .card-name { font-size: 0.82rem; font-weight: 600; }

.product-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.3rem; cursor: pointer; transition: all 0.22s;
}
.product-card:hover { border-color: rgba(207,10,44,0.5); transform: translateY(-2px); }
.product-card.selected { border-color: var(--red); background: rgba(207,10,44,0.09); }
.product-card .p-icon { font-size: 2.2rem; margin-bottom: 8px; }
.product-card .p-name { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.product-card .p-spec { font-size: 0.72rem; color: var(--muted); line-height: 1.4; }
.product-card .p-price { font-size: 0.95rem; font-weight: 900; color: var(--success); margin-top: 8px; }

/* ====== CONDITION ====== */
.condition-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 11px; margin-bottom: 1.5rem; }
.condition-card { background: var(--card); border: 1px solid var(--border); border-radius: 13px; padding: 1.3rem; cursor: pointer; transition: all 0.22s; }
.condition-card:hover { border-color: rgba(207,10,44,0.4); }
.condition-card.selected { border-color: var(--red); background: rgba(207,10,44,0.09); }
.condition-card h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; }
.condition-card p { font-size: 0.75rem; color: var(--muted); }
.condition-card .cond-icon { font-size: 1.8rem; margin-bottom: 7px; }

/* ====== RESULT ====== */
.result-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 1.8rem; margin-bottom: 1.4rem; }
.result-header { display: flex; align-items: center; gap: 14px; padding-bottom: 1.3rem; border-bottom: 1px solid var(--border); margin-bottom: 1.3rem; }
.result-device-icon { width: 58px; height: 58px; background: linear-gradient(135deg, var(--red), var(--red-dark)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.result-info h3 { font-size: 1.1rem; font-weight: 700; }
.result-info p { color: var(--muted); font-size: 0.82rem; margin-top: 3px; }
.price-box { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 1.3rem; }
.price-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 11px; padding: 0.9rem; text-align: center; }
.price-item.highlight { background: rgba(207,10,44,0.07); border-color: rgba(207,10,44,0.28); }
.price-item .label { font-size: 0.72rem; color: var(--muted); margin-bottom: 5px; }
.price-item .amount { font-size: 1.25rem; font-weight: 900; }
.price-item.highlight .amount { color: var(--red); }
.suggested-device { background: rgba(0,201,123,0.05); border: 1px solid rgba(0,201,123,0.2); border-radius: 13px; padding: 1.1rem; display: flex; align-items: center; gap: 13px; margin-bottom: 1.3rem; }
.suggested-device .dev-icon { font-size: 2.2rem; }
.suggested-device h4 { font-size: 0.92rem; font-weight: 700; color: var(--success); }
.suggested-device p { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }

/* ====== PLATFORMS ====== */
.platforms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-bottom: 1.5rem; }
.platform-card { background: var(--card); border: 2px solid var(--border); border-radius: 14px; padding: 1.3rem; cursor: pointer; transition: all 0.22s; text-align: center; }
.platform-card:hover { transform: translateY(-2px); }
.platform-card.selected { background: rgba(207,10,44,0.06); }
.platform-card .plat-icon { font-size: 2.4rem; margin-bottom: 9px; }
.platform-card h3 { font-size: 0.92rem; font-weight: 700; }
.platform-card p { font-size: 0.74rem; color: var(--muted); margin-top: 3px; }
.platform-card.blue { border-color: #1453cc; }
.platform-card.blue:hover, .platform-card.blue.selected { border-color: #1a6dff; box-shadow: 0 0 0 3px rgba(26,109,255,0.15); }
.platform-card.red  { border-color: #8a0015; }
.platform-card.red:hover,  .platform-card.red.selected  { border-color: #CF0A2C; box-shadow: 0 0 0 3px rgba(207,10,44,0.15); }
.platform-card.yellow { border-color: #a07000; }
.platform-card.yellow:hover, .platform-card.yellow.selected { border-color: #f5a623; box-shadow: 0 0 0 3px rgba(245,166,35,0.15); }
.platform-card.blue   h3 { color: #4d94ff; }
.platform-card.red    h3 { color: #ff4d6a; }
.platform-card.yellow h3 { color: #f5a623; }

/* ====== ORDER CONFIRM ====== */
.order-confirm { background: var(--card); border: 1px solid rgba(0,201,123,0.25); border-radius: 18px; padding: 2.5rem; text-align: center; }
.order-confirm .big-icon { font-size: 4rem; margin-bottom: 1rem; }
.order-confirm h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 7px; }
.order-confirm p { color: var(--muted); margin-bottom: 1.3rem; }
.order-number { background: rgba(0,201,123,0.07); border: 1px solid rgba(0,201,123,0.25); border-radius: 13px; padding: 1.3rem; margin: 1.3rem 0; }
.order-number .label { font-size: 0.78rem; color: var(--muted); margin-bottom: 5px; }
.order-number .number { font-size: 2rem; font-weight: 900; color: var(--success); letter-spacing: 3px; }

/* ====== FORM ====== */
.ticket-form { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 1.8rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 7px; font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 9px; padding: 11px 15px; color: var(--white); font-family: 'Cairo', sans-serif;
  font-size: 0.88rem; transition: border-color 0.2s; outline: none; direction: rtl;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 75px; }
.form-group select option { background: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-section-title { font-size: 0.82rem; font-weight: 700; color: var(--red); border-bottom: 1px solid var(--border); padding-bottom: 7px; margin-bottom: 0.9rem; margin-top: 1.3rem; }

/* ====== TICKET STATUS ====== */
.ticket-status { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 1.8rem; }
.status-timeline { margin: 1.3rem 0; }
.status-step { display: flex; align-items: flex-start; gap: 14px; padding: 10px 0; position: relative; }
.status-step:not(:last-child)::after { content: ''; position: absolute; right: 15px; top: 44px; width: 2px; height: calc(100% - 20px); background: var(--border); }
.status-step.active::after    { background: var(--red); }
.status-step.completed::after { background: var(--success); }
.status-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; z-index: 1; }
.status-step.active .status-dot   { background: var(--red); box-shadow: 0 0 0 4px rgba(207,10,44,0.18); }
.status-step.completed .status-dot { background: var(--success); }
.status-step.rejected .status-dot  { background: #ff4444; }
.status-step .status-text h4 { font-size: 0.88rem; font-weight: 700; }
.status-step .status-text p  { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ====== BUTTONS ====== */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 26px; border-radius: 11px; font-family: 'Cairo', sans-serif; font-size: 0.92rem; font-weight: 700; cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.38; cursor: not-allowed; transform: none; }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--muted); }
.btn-success { background: var(--success); color: var(--black); }
.btn-lg { padding: 14px 36px; font-size: 1rem; width: 100%; justify-content: center; }
.btn-row { display: flex; gap: 11px; margin-top: 1.3rem; flex-wrap: wrap; }
.btn-sm { padding: 6px 14px; font-size: 0.78rem; border-radius: 7px; }
.btn-danger { background: rgba(207,10,44,0.15); color: var(--red); border: 1px solid rgba(207,10,44,0.3); }
.btn-danger:hover { background: var(--red); color: white; }

/* ====== SEARCH ====== */
.search-bar { position: relative; margin-bottom: 1.3rem; }
.search-bar input { width: 100%; background: var(--card); border: 1px solid var(--border); border-radius: 11px; padding: 11px 18px 11px 44px; color: var(--white); font-family: 'Cairo', sans-serif; font-size: 0.88rem; outline: none; transition: border-color 0.2s; direction: rtl; }
.search-bar input:focus { border-color: var(--red); }
.search-bar .s-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); }

/* ====== DASHBOARD ====== */
.dashboard { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 1.8rem; }
.dash-tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 5px; margin-bottom: 1.8rem; width: fit-content; flex-wrap: wrap; }
.dash-tab { padding: 8px 20px; border-radius: 9px; border: none; background: transparent; color: var(--muted); font-family: 'Cairo', sans-serif; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; font-weight: 600; }
.dash-tab.active { background: var(--red); color: white; }
.dashboard-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 1.8rem; }
.stat-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 11px; padding: 0.9rem; text-align: center; }
.stat-card .stat-num   { font-size: 1.7rem; font-weight: 900; }
.stat-card .stat-label { font-size: 0.7rem; color: var(--muted); margin-top: 3px; }
.stat-card.red    .stat-num { color: var(--red); }
.stat-card.green  .stat-num { color: var(--success); }
.stat-card.yellow .stat-num { color: var(--warn); }
.stat-card.blue   .stat-num { color: #4d94ff; }

.tickets-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.tickets-table th { background: rgba(255,255,255,0.04); padding: 9px 12px; text-align: right; color: var(--muted); font-weight: 600; border-bottom: 1px solid var(--border); }
.tickets-table td { padding: 11px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.ticket-row:hover td { background: rgba(255,255,255,0.015); }

.badge { display: inline-block; padding: 3px 9px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; }
.badge-new      { background: rgba(207,10,44,0.15); color: var(--red); }
.badge-approved { background: rgba(245,166,35,0.15); color: var(--warn); }
.badge-shipping { background: rgba(26,109,255,0.15); color: #4d94ff; }
.badge-received { background: rgba(0,201,123,0.15); color: var(--success); }
.badge-done     { background: rgba(0,201,123,0.28); color: var(--success); }
.badge-rejected { background: rgba(255,68,68,0.15); color: #ff4444; }

.action-select { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 7px; color: var(--white); font-family: 'Cairo', sans-serif; font-size: 0.76rem; padding: 5px 9px; cursor: pointer; outline: none; max-width: 160px; }
.action-select option { background: var(--dark); }

/* ====== UPLOAD PANEL ====== */
.upload-panel { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; margin-bottom: 1.5rem; }
.upload-panel h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--white); display: flex; align-items: center; gap: 8px; }
.upload-panel h3 span { color: var(--red); }
.admin-items-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; margin-top: 1rem; }
.admin-items-table th { background: rgba(255,255,255,0.04); padding: 8px 10px; text-align: right; color: var(--muted); font-weight: 600; border-bottom: 1px solid var(--border); }
.admin-items-table td { padding: 9px 10px; border-bottom: 1px solid var(--border); }

/* ====== TICKET SUMMARY ====== */
.ticket-summary-box { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 11px; padding: 1.1rem; margin: 1.3rem 0; }
.ticket-summary-box h4 { font-size: 0.82rem; color: var(--muted); margin-bottom: 9px; font-weight: 600; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; font-size: 0.82rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.summary-row:last-child { border-bottom: none; }
.summary-row .s-label { color: var(--muted); }
.summary-row .s-value { font-weight: 600; }
.summary-row .s-value.green { color: var(--success); }

/* ====== NOTIFICATION ====== */
.notification { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--card); border: 1px solid var(--border); border-radius: 13px; padding: 13px 22px; font-size: 0.88rem; z-index: 999; transition: transform 0.3s ease; box-shadow: 0 20px 60px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 9px; white-space: nowrap; }
.notification.show    { transform: translateX(-50%) translateY(0); }
.notification.success { border-color: rgba(0,201,123,0.35); }
.notification.error   { border-color: rgba(207,10,44,0.35); }

/* ====== MODAL ====== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 500; align-items: center; justify-content: center; padding: 1.5rem; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; max-width: 680px; width: 100%; max-height: 85vh; overflow-y: auto; }
.modal-box h2 { font-size: 1.2rem; font-weight: 900; margin-bottom: 1rem; }
.modal-close { float: left; background: none; border: 1px solid var(--border); color: var(--muted); width: 30px; height: 30px; border-radius: 7px; cursor: pointer; font-size: 1rem; }
.terms-content { font-size: 0.82rem; color: var(--muted); line-height: 1.9; }
.terms-content h3 { color: var(--white); font-size: 0.9rem; margin: 1.2rem 0 0.5rem; }

/* ====== EMPTY STATE ====== */
.empty-state { text-align: center; padding: 2.5rem; color: var(--muted); }
.empty-state .e-icon { font-size: 2.8rem; margin-bottom: 0.8rem; }

/* ====== FOOTER ====== */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 3rem 2rem 1.5rem; margin-top: 4rem; }
.footer-grid { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .logo-phonex { font-size: 1.4rem; margin-bottom: 6px; }
.footer-brand .logo-tag { display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-contact { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.footer-bottom { max-width: 1050px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.75rem; color: var(--muted); }

/* ====== RESPONSIVE ====== */
@media (max-width: 700px) {
  .dashboard-stats { grid-template-columns: 1fr 1fr; }
  .price-box { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .logo-divider, .brand-credit { display: none; }
  .step-label { display: none; }
}








/* ============================================================
   LIGHT THEME OVERRIDES (يتم التحكم بها من لوحة التحكم)
   ============================================================ */
   
/* ============================================================
   LIGHT THEME OVERRIDES 
   ============================================================ */
body.light-theme {
  --black: #f4f6f9;
  --dark: #e9ecef;
  --card: #ffffff;
  --border: #d1d5db;
  --muted: #6b7280;
  --white: #111827;
}

body.light-theme header {
  background: rgba(244, 246, 249, 0.97);
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
  background: #f9fafb;
  color: var(--white);
}

body.light-theme .step-item:not(.active):not(.done) .step-num {
  background: #e5e7eb;
  color: #374151;
}

body.light-theme .search-bar input {
  background: #ffffff;
  color: #111827;
}

   
   
/* ============================================================
   AUTH MODAL (تسجيل الدخول / إنشاء حساب)
   ============================================================ */
.auth-box {
  max-width: 400px;
}
.auth-tabs {
  display: flex; gap: 4px; margin-bottom: 1.5rem;
}
.auth-tab {
  flex: 1; padding: 10px; text-align: center; border-radius: 9px;
  background: transparent; color: var(--muted); border: 1px solid var(--border);
  cursor: pointer; font-weight: 700; transition: all 0.2s;
}
.auth-tab.active {
  background: var(--red); color: white; border-color: var(--red);
}
.forgot-password {
  display: block; text-align: left; font-size: 0.75rem; color: var(--muted);
  margin-top: -5px; margin-bottom: 15px; cursor: pointer; text-decoration: none;
}
.forgot-password:hover {
  color: var(--red); text-decoration: underline;
}

