* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #f2f4f8;
  color: #1f2937;
}

.auth-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: radial-gradient(circle at 10% 20%, #e9efff 0%, #f2f4f8 45%, #eef2f7 100%);
  background-size: 140% 140%;
  animation: gradientDrift 18s ease-in-out infinite;
}

.auth-wrapper::before,
.auth-wrapper::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.auth-wrapper::before {
  width: 300px;
  height: 300px;
  background: #93c5fd;
  top: -80px;
  left: -60px;
  animation: floatBlobA 14s ease-in-out infinite;
}

.auth-wrapper::after {
  width: 260px;
  height: 260px;
  background: #c4b5fd;
  bottom: -70px;
  right: -40px;
  animation: floatBlobB 16s ease-in-out infinite;
}

.auth-layout::before,
.auth-layout::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}

.auth-layout::before {
  background: #60a5fa;
  top: 8%;
  left: 46%;
  animation: orbitDotA 10s linear infinite;
}

.auth-layout::after {
  background: #a78bfa;
  bottom: 12%;
  right: 44%;
  animation: orbitDotB 12s linear infinite;
}

.auth-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.auth-brand-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 100%);
  color: #f8fafc;
  border-radius: 14px;
  padding: 28px;
  animation: authFadeIn 0.55s ease;
}

.auth-brand-panel::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 34%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-120%) rotate(8deg);
  animation: panelShimmer 7.5s ease-in-out infinite;
  pointer-events: none;
}

.auth-brand-panel h1 {
  margin: 0 0 10px;
  font-size: 30px;
}

.auth-brand-panel p {
  margin: 0 0 16px;
  color: #cbd5e1;
  font-size: 14px;
}

.auth-brand-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: #e2e8f0;
}

.auth-card {
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.11);
  border: 1px solid #e8edf4;
  animation: authFadeInUp 0.55s ease;
}

.auth-card h2 {
  margin: 0 0 4px;
  font-size: 24px;
}

.auth-card p {
  margin: 0 0 16px;
  font-size: 13px;
  color: #64748b;
}

.auth-form input {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.auth-form input:focus {
  transform: translateY(-1px);
}

.auth-form .btn {
  margin-top: 6px;
}

@keyframes authFadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes authFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes floatBlobA {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(26px, 18px) scale(1.06);
  }
}

@keyframes floatBlobB {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-22px, -14px) scale(1.05);
  }
}

@keyframes gradientDrift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes orbitDotA {
  0% {
    transform: translate(0, 0);
    opacity: 0.2;
  }
  50% {
    transform: translate(28px, -14px);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.2;
  }
}

@keyframes orbitDotB {
  0% {
    transform: translate(0, 0);
    opacity: 0.25;
  }
  50% {
    transform: translate(-26px, 16px);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.25;
  }
}

@keyframes panelShimmer {
  0%, 100% {
    transform: translateX(-120%) rotate(8deg);
  }
  45%, 55% {
    transform: translateX(370%) rotate(8deg);
  }
}

.app-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
  transition: grid-template-columns 0.22s ease;
}

.sidebar {
  background: #111827;
  color: #f8fafc;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 14px;
}

.sidebar .subtitle {
  color: #9ca3af;
  margin-top: -8px;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 0;
}

.menu-group summary {
  list-style: none;
  color: #e5e7eb;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.15s ease;
}

.menu-group summary::-webkit-details-marker {
  display: none;
}

.menu-group summary:hover {
  background: #1f2937;
  transform: translateX(1px);
}

.submenu {
  margin-top: 4px;
  padding-left: 10px;
  display: grid;
  gap: 6px;
}

.sidebar a {
  color: #e5e7eb;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.18s ease, transform 0.15s ease;
}

.sidebar a:hover {
  background: #1f2937;
  transform: translateX(2px);
}

.sidebar a.is-active {
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(147, 197, 253, 0.35);
  color: #dbeafe;
}

.menu-group summary.is-active {
  background: rgba(59, 130, 246, 0.14);
  color: #dbeafe;
}

.menu-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.menu-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.sidebar a:hover .menu-icon svg,
.menu-group summary:hover .menu-icon svg {
  transform: scale(1.08);
  opacity: 1;
}

.top-navbar > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6deea;
  background: #ffffff;
  color: #334155;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.sidebar-toggle:hover {
  background: #f8fafc;
  border-color: #c7d3e2;
}

.app-shell.sidebar-collapsed {
  grid-template-columns: 72px 1fr;
}

.app-shell.sidebar-collapsed .sidebar {
  padding-left: 8px;
  padding-right: 8px;
}

.app-shell.sidebar-collapsed .sidebar h2 {
  font-size: 0;
  margin: 0;
}

.app-shell.sidebar-collapsed .sidebar h2::after {
  content: "S";
  font-size: 16px;
}

.app-shell.sidebar-collapsed .sidebar a {
  justify-content: center;
  padding: 8px 0;
}

.app-shell.sidebar-collapsed .sidebar a span:last-child {
  display: none;
}

.app-shell.sidebar-collapsed .menu-group summary span:last-child {
  display: none;
}

.app-shell.sidebar-collapsed .menu-group summary {
  justify-content: center;
  padding: 8px 0;
}

.app-shell.sidebar-collapsed .submenu {
  padding-left: 0;
}

.sidebar-footer {
  display: grid;
  gap: 8px;
}

.content {
  padding: 22px;
}

.content > h1,
.content > p,
.content > .panel,
.content > .cards {
  animation: contentReveal 0.35s ease both;
}

.content > p { animation-delay: 0.04s; }
.content > .panel { animation-delay: 0.07s; }
.content > .cards { animation-delay: 0.1s; }

.content h1 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 650;
}

.content h2 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 620;
}

.content p {
  margin: 0;
  font-size: 14px;
  color: #475569;
}

.top-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.top-navbar:hover {
  border-color: #d6deea;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.top-navbar-kicker {
  margin: 0 0 2px;
  color: #64748b;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.top-navbar-title {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #0f172a;
}

.top-navbar-user {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #334155;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  padding: 6px 8px;
  background: #ffffff;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.top-navbar-user:hover {
  border-color: #cfd8e3;
  background-color: #f8fafc;
}

.top-navbar-user:active {
  transform: translateY(1px);
}

.top-navbar-user::-webkit-details-marker {
  display: none;
}

.top-navbar-user span:last-child {
  display: grid;
  gap: 2px;
  text-align: left;
}

.top-navbar-user small {
  text-transform: capitalize;
  color: #64748b;
  font-size: 11px;
}

.top-navbar-user strong {
  font-size: 13px;
  font-weight: 600;
}

.top-navbar-profile {
  position: relative;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: #1e3a8a;
  font-weight: 700;
  font-size: 13px;
}

.profile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  padding: 12px;
  display: grid;
  gap: 10px;
  z-index: 10;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.top-navbar-profile[open] .profile-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.profile-menu p {
  margin: 0;
  color: #334155;
  font-size: 14px;
}

.profile-menu .btn {
  width: 100%;
}

.cards {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
}

.card,
.panel {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid #edf1f6;
}

.card:hover,
.panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.07);
  border-color: #dbe3ef;
}

.panel {
  margin-top: 12px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.form-grid {
  display: grid;
  gap: 9px;
}

.form-2col {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

label {
  display: grid;
  gap: 5px;
  font-size: 12px;
  color: #475569;
  font-weight: 600;
}

input,
select,
button {
  padding: 8px 10px;
  border-radius: 7px;
  border: 1px solid #d1d5db;
  font-size: 13px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: #9fb4d3;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  background: #fcfdff;
}

.btn {
  border: none;
  background: #1d4ed8;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.15s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  filter: brightness(0.97);
  box-shadow: 0 8px 16px rgba(29, 78, 216, 0.22);
}

.btn:active {
  transform: translateY(1px);
}

.btn-danger {
  background: #dc2626;
}

.alert {
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.alert.error {
  background: #fee2e2;
  color: #991b1b;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 9px;
  text-align: left;
  font-size: 12px;
}

thead th {
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 11px;
}

tbody tr {
  transition: background-color 0.18s ease, transform 0.15s ease;
}

tbody tr:hover {
  background-color: #f8fafc;
}

.dataTables_wrapper {
  font-size: 12px;
  color: #475569;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
  border: 1px solid #d1d5db;
  border-radius: 7px;
  padding: 5px 8px;
  font-size: 12px;
  background: #ffffff;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 7px !important;
  border: 1px solid transparent !important;
  transition: all 0.18s ease;
}

tbody tr td {
  transition: color 0.18s ease;
}

tbody tr:hover td {
  color: #0f172a;
}

@keyframes contentReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #1d4ed8 !important;
  color: #ffffff !important;
  border-color: #1d4ed8 !important;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(580px, 100%);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.26);
  padding: 16px;
  transform: translateY(8px) scale(0.98);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.modal-overlay.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.modal-header h2 {
  margin: 0;
}

.modal-subtitle {
  margin: 4px 0 0;
  font-size: 12px;
  color: #64748b;
}

.modal-close {
  border: 1px solid #d5deea;
  background: #ffffff;
  color: #475569;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.16s ease;
}

.modal-close:hover {
  background: #f8fafc;
  border-color: #c7d3e2;
  transform: translateY(-1px);
}

.grid-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.grid-toolbar small {
  color: #64748b;
  font-size: 12px;
}

.grid-wrapper {
  overflow-x: auto;
}

.editable-grid {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.editable-grid th,
.editable-grid td {
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #eef2f7;
  padding: 6px;
  font-size: 12px;
  white-space: nowrap;
}

.editable-grid th:last-child,
.editable-grid td:last-child {
  border-right: none;
}

.editable-grid input {
  width: 100%;
  min-width: 90px;
  padding: 6px 8px;
  font-size: 12px;
}

.machine-grid th {
  text-align: center;
}

.machine-grid .day-input {
  min-width: 150px;
}

.machine-grid .row-total {
  min-width: 72px;
  text-align: right;
  font-weight: 700;
  color: #334155;
}

.period-filter {
  display: flex;
  align-items: end;
  gap: 8px;
}

.dashboard-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.chart-box {
  position: relative;
  min-height: 260px;
}

.btn-mini {
  min-width: 28px;
  height: 28px;
  padding: 0;
}

@media (max-width: 900px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    padding: 20px;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    z-index: 60;
    transform: translateX(-100%);
    transition: transform 0.22s ease;
  }

  .app-shell.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .content {
    padding: 16px;
  }
}

/* Login redesign override */
.auth-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(145deg, #eef2ff 0%, #e2e8f0 45%, #f8fafc 100%);
}

.auth-card.auth-card-premium {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.16);
  animation: authCardIn 0.55s ease;
}

.auth-logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1d4ed8, #4338ca);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.auth-card-premium h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.01em;
}

.auth-card-premium .auth-subtitle {
  margin: 8px 0 16px;
  font-size: 13px;
  color: #64748b;
}

.auth-form label {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.auth-form input {
  height: 40px;
  border-radius: 10px;
  border: 1px solid #cfd8e3;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
}

.auth-form input:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
  transform: translateY(-1px);
}

.auth-submit-btn {
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #4338ca);
}

.auth-submit-btn:hover {
  filter: brightness(1.03);
}

.auth-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.4;
  pointer-events: none;
}

.auth-orb-a {
  width: 260px;
  height: 260px;
  background: #60a5fa;
  top: -60px;
  left: -40px;
  animation: orbFloatA 11s ease-in-out infinite;
}

.auth-orb-b {
  width: 220px;
  height: 220px;
  background: #818cf8;
  right: -30px;
  top: 20%;
  animation: orbFloatB 13s ease-in-out infinite;
}

.auth-orb-c {
  width: 240px;
  height: 240px;
  background: #c4b5fd;
  bottom: -70px;
  left: 32%;
  animation: orbFloatC 15s ease-in-out infinite;
}

@keyframes authCardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes orbFloatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(28px, 16px) scale(1.08); }
}

@keyframes orbFloatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-22px, 24px) scale(1.06); }
}

@keyframes orbFloatC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -20px) scale(1.05); }
}

/* Login v3 */
.auth-wrapper {
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 55%, #e0e7ff 100%);
}

.auth-shell-v3 {
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  background: #ffffff;
  animation: authCardIn 0.45s ease;
}

.auth-side-v3 {
  position: relative;
  padding: 38px 34px;
  background: linear-gradient(145deg, #0f172a 0%, #1e40af 100%);
  color: #f8fafc;
}

.auth-side-v3::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  animation: orbFloatB 12s ease-in-out infinite;
}

.auth-side-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 6px 10px;
}

.auth-side-v3 h1 {
  margin: 14px 0 8px;
  font-size: 34px;
}

.auth-side-v3 p {
  margin: 0;
  color: #dbeafe;
  font-size: 14px;
}

.auth-side-points {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.auth-side-points span {
  font-size: 13px;
  color: #e2e8f0;
}

.auth-card-v3 {
  padding: 32px 28px;
  background: #ffffff;
}

.auth-card-v3 h2 {
  margin: 0 0 4px;
  font-size: 24px;
  color: #0f172a;
}

.auth-card-v3 > p {
  margin: 0 0 16px;
  color: #64748b;
  font-size: 13px;
}

.auth-form-v3 input {
  height: 42px;
  border-radius: 10px;
  border: 1px solid #d6deea;
}

.auth-form-v3 input:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.13);
}

.auth-btn-v3 {
  margin-top: 8px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #3730a3);
}

@media (max-width: 900px) {
  .auth-shell-v3 {
    grid-template-columns: 1fr;
  }
  .auth-side-v3 {
    padding: 24px 20px;
  }
}
