/* Base44 Style Marketing CMS CSS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --sidebar-bg: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --border-subtle: #f1f5f9;
  
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-light: #eeeffe;
  
  --success: #10b981;
  --success-light: #ecfdf5;
  --success-text: #047857;
  
  --danger: #ef4444;
  --danger-light: #fef2f2;
  --danger-text: #b91c1c;

  --warning: #f59e0b;
  --warning-light: #fffbeb;
  --warning-text: #b45309;

  --purple-light: #f5f3ff;
  --purple-text: #6d28d9;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* App Layout */
#app {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 260px;
  background-color: var(--sidebar-bg);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
}

.sidebar-header {
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.brand-info h1 {
  font-size: 17px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.brand-info p {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.sidebar-nav {
  flex: 1;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.nav-item:hover {
  background-color: #f1f5f9;
  color: var(--text-main);
}

.nav-item.active {
  background-color: #eef2ff;
  color: var(--primary);
  font-weight: 600;
}

.nav-item svg {
  width: 18px;
  height: 18px;
}

.nav-arrow {
  margin-left: auto;
  opacity: 0.5;
}

/* Main Content Area */
.main-wrapper {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.top-bar {
  height: 72px;
  background: white;
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-title-group h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
}

.page-title-group p {
  font-size: 13px;
  color: var(--text-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.month-selector {
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(79, 70, 229, 0.2);
}

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

.content-area {
  padding: 32px;
  flex: 1;
}

/* Dashboard Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
}

.stat-info .stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.stat-info .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.stat-info .stat-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon.purple { background: var(--purple-light); color: var(--primary); }
.stat-icon.gray { background: #f1f5f9; color: #64748b; }
.stat-icon.green { background: var(--success-light); color: var(--success); }
.stat-icon.red { background: var(--danger-light); color: var(--danger); }

/* Dashboard Charts Row */
.charts-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

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

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}

/* Charts SVG Mock */
.chart-container {
  height: 240px;
  position: relative;
}

/* Controls Bar */
.controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  background: white;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  width: 320px;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 100%;
}

.filters-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.select-input {
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: white;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
}

/* Project / Proposal Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.project-card {
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.project-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.client-name {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-active { background: #dcfce7; color: #15803d; }
.badge-pending { background: #fef3c7; color: #b45309; }
.badge-accepted { background: #dcfce7; color: #15803d; }
.badge-rejected { background: #fee2e2; color: #b91c1c; }
.badge-completed { background: #e0e7ff; color: #4338ca; }
.badge-excess { background: #dcfce7; color: #15803d; }
.badge-deficit { background: #fee2e2; color: #b91c1c; }

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.service-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.pill-meta-ads { background: #f3e8ff; color: #7e22ce; }
.pill-google-ads { background: #dbeafe; color: #1d4ed8; }
.pill-google-seo { background: #dcfce7; color: #15803d; }
.pill-lokal-seo { background: #fef3c7; color: #b45309; }
.pill-sosyal-medya { background: #fce7f3; color: #be185d; }
.pill-wordpress { background: #cffaff; color: #0e7490; }
.pill-uiux-tasarım { background: #ffedd5; color: #c2410c; }
.pill-email-marketing { background: #fef9c3; color: #a16207; }
.pill-linkedin-ads { background: #dbeafe; color: #0a66c2; }
.pill-tiktok-ads { background: #f3f4f6; color: #111827; }
.pill-influencer-marketing { background: #fdf4ff; color: #a21caf; }


.card-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.card-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

.card-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* Profit Share / Partner Distribution View */
.distribution-header-card {
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.distribution-header-card p {
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.partners-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.partners-table th {
  background: #f8fafc;
  padding: 16px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}

.partners-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  font-weight: 600;
}

.partner-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.bakiye-plus { color: #10b981; font-weight: 700; }
.bakiye-minus { color: #ef4444; font-weight: 700; }

.sub-date {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 24px 16px;
  overflow-y: auto;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box, .modal-card {
  background: #ffffff !important;
  width: 100%;
  max-width: 580px;
  max-height: calc(100vh - 48px);
  margin: auto;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: var(--transition);
  overflow: hidden;
  padding: 0;
  border: 1px solid #e2e8f0;
}

.modal-backdrop.active .modal-box,
.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  flex-shrink: 0;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  margin-bottom: 0;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.modal-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.modal-footer {
  flex-shrink: 0;
  padding: 14px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  z-index: 10;
}

.close-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fca5a5;
  transform: scale(1.08);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.services-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #f8fafc;
  padding: 12px;
  border-radius: var(--radius-md);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}

/* Quick Actions List */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-action-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid var(--border-subtle);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 14px;
}

.quick-action-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(2px);
}

/* Transaction Type Toggle Buttons (Screenshot 1) */
.tx-type-btn {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.tx-type-btn.active-gelir {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.tx-type-btn.active-gider {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
}

/* Ödemesi Alınmayan Aktif Projeler Alert Box (Screenshot 2) */
.unpaid-projects-alert {
  background: #fffdf0;
  border: 1px solid #fef08a;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.05);
}

.unpaid-alert-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b45309;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.unpaid-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.unpaid-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #fed7aa;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  color: #334155;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.unpaid-pill:hover {
  background: #fff7ed;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.unpaid-pill-title {
  font-weight: 700;
  color: #0f172a;
}

.unpaid-pill-client {
  color: #64748b;
}

.unpaid-pill-amount {
  font-weight: 800;
  color: #d97706;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (MOBILE & TABLET SUPPORT)
   ========================================================================== */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #334155;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.close-sidebar-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #64748b;
  cursor: pointer;
  margin-left: auto;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 45;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* Responsive Grids */
.personnel-balances-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.monthly-net-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.dashboard-two-col-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 12px;
}

/* Media Queries for Tablet and Mobile (<= 1024px) */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .close-sidebar-btn {
    display: block;
  }

  .main-wrapper {
    margin-left: 0 !important;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .personnel-balances-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .monthly-net-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .dashboard-two-col-grid {
    grid-template-columns: 1fr !important;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Media Queries for Smartphones (<= 640px) */
@media (max-width: 640px) {
  .top-bar {
    padding: 0 16px !important;
    height: auto !important;
    min-height: 64px;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .month-selector {
    flex: 1;
  }

  .content-area {
    padding: 16px !important;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .personnel-balances-grid {
    grid-template-columns: 1fr !important;
  }

  .monthly-net-cards-grid {
    grid-template-columns: 1fr !important;
  }

  .cards-grid {
    grid-template-columns: 1fr !important;
  }

  .modal-box {
    width: 95% !important;
    max-width: 100% !important;
    padding: 18px !important;
    margin: 10px;
  }

  .partners-table th, 
  .partners-table td {
    padding: 10px 12px !important;
    font-size: 13px !important;
  }

  .page-title-group h2 {
    font-size: 20px !important;
  }
}

/* ───────────────────────────────────────────────── */
/* GATEKEEPER / LOCK SCREEN STYLES                   */
/* ───────────────────────────────────────────────── */

.lock-screen-wrapper {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: radial-gradient(circle at 50% 10%, #1e1b4b 0%, #0f172a 60%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: var(--font-family);
  backdrop-filter: blur(20px);
}

.lock-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: lockCardIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lockCardIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lock-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
}

.lock-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.lock-subtitle {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.5;
}

.lock-input-group {
  position: relative;
  margin-bottom: 16px;
  text-align: left;
}

.lock-input-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
}

.lock-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.lock-input-box input {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}

.lock-input-box input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.lock-toggle-pwd {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.lock-toggle-pwd:hover {
  color: #475569;
}

.lock-btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: white;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px -4px rgba(79, 70, 229, 0.35);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lock-btn-submit:hover {
  background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -4px rgba(79, 70, 229, 0.45);
}

.lock-btn-submit:active {
  transform: translateY(0);
}

.lock-error-alert {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  display: none;
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.lock-footer-info {
  margin-top: 24px;
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

