:root {
  --bg: #f6f4ef;
  --panel: #ffffff;
  --text: #1f2933;
  --muted: #6f766f;
  --line: #e8e1d6;
  --primary: #46655b;
  --primary-dark: #31493f;
  --primary-soft: #edf4f1;
  --accent: #c7a56b;
  --accent-soft: #f7efe1;
  --soft: #f2f6f3;
  --success: #2f6f56;
  --success-soft: #edf7f2;
  --warning: #8a641f;
  --warning-soft: #fbf3df;
  --danger: #a63f37;
  --danger-soft: #fae9e6;
  --shadow: 0 18px 45px rgba(52, 64, 56, .09);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(70,101,91,.10), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(199,165,107,.10), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.sidebar {
  background: linear-gradient(180deg, #263c35 0%, #17241f 100%);
  color: #ffffff;
  padding: 24px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c7a56b, #789386);
  font-weight: 800;
}

.brand-title {
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-subtitle {
  color: #d6d0c4;
  font-size: 13px;
  margin-top: 2px;
}

.user-mini {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  font-weight: 800;
}

.user-name {
  font-weight: 700;
}

.user-role {
  color: #d6d0c4;
  font-size: 12px;
  letter-spacing: .08em;
  margin-top: 2px;
}

.nav {
  display: grid;
  gap: 8px;
}

.nav a {
  color: #eee8dc;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 650;
}

.nav a:hover,
.nav a.active {
  background: rgba(255,255,255,.14);
  color: #ffffff;
}

.main-content {
  padding: 32px;
  min-width: 0;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.topbar h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.topbar p {
  margin: 8px 0 0;
  color: var(--muted);
}

.card,
.stat-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(227,233,242,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  backdrop-filter: blur(12px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.stat-card strong {
  display: block;
  font-size: 36px;
  letter-spacing: -.04em;
  margin: 8px 0 2px;
}

.stat-card small {
  color: var(--muted);
}

.stat-card.ok {
  border-color: rgba(15,138,95,.24);
  background: linear-gradient(180deg, #fff, var(--success-soft));
}

.stat-card.warn {
  border-color: rgba(166,106,0,.22);
  background: linear-gradient(180deg, #fff, var(--warning-soft));
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.section-head h2,
.card h2 {
  margin: 0 0 6px;
  letter-spacing: -.02em;
}

.section-head p,
.card p.muted,
.muted {
  color: var(--muted);
  margin: 0;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.info-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-list span {
  color: var(--muted);
}

.info-list strong {
  text-align: right;
}

.quick-actions {
  display: grid;
  gap: 12px;
}

.action-card {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfaf7;
  font-weight: 750;
  color: var(--text);
}

.action-card:hover {
  border-color: rgba(70,101,91,.38);
  background: var(--soft);
}

.btn {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

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

.btn.primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

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

.btn.secondary {
  background: var(--soft);
  border-color: rgba(70,101,91,.20);
  color: var(--primary-dark);
}

.btn.ghost {
  background: transparent;
}

.btn.small {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 12px;
}

.btn.full {
  width: 100%;
}

.form {
  display: grid;
  gap: 13px;
}

.form label {
  font-weight: 750;
  font-size: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
  background: #ffffff;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(70,101,91,.55);
  box-shadow: 0 0 0 4px rgba(70,101,91,.12);
}

.grid-form {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.full-row {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.check-pill {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th {
  text-align: left;
  color: var(--muted);
  font-size: 13px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

td span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: 12px;
}

.pill.success {
  background: var(--success-soft);
  color: var(--success);
}

.pill.warning {
  background: var(--warning-soft);
  color: var(--warning);
}

.empty {
  color: var(--muted);
  text-align: center;
  padding: 22px;
}

.journal-list {
  display: grid;
  gap: 12px;
}

.journal-list.compact {
  max-height: 610px;
  overflow: auto;
  padding-right: 4px;
}

.journal-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.journal-item div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.journal-item span,
.journal-item small {
  color: var(--muted);
}

.journal-item p {
  margin: 10px 0 6px;
}

.flash-wrap {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.flash {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid var(--line);
}

.flash.success {
  background: var(--success-soft);
  color: var(--success);
}

.flash.danger {
  background: var(--danger-soft);
  color: var(--danger);
}

.flash.info {
  background: var(--soft);
  color: var(--primary-dark);
}

.note-card {
  margin-top: 18px;
}

.clean-list {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.success-box,
.warning-box {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  display: grid;
  gap: 6px;
}

.success-box {
  background: var(--success-soft);
  color: var(--success);
}

.warning-box {
  background: var(--warning-soft);
  color: var(--warning);
}

.attendance-card {
  margin-top: 18px;
}

.camera-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
}

.camera-box {
  background: #1a2521;
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid #31493f;
}

video,
.preview {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.hidden {
  display: none !important;
}

.capture-panel {
  display: grid;
  align-content: start;
  gap: 12px;
}

.status-line {
  padding: 12px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
}

.button-stack {
  display: grid;
  gap: 10px;
}

.filter-form {
  display: flex;
  align-items: end;
  gap: 12px;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(199,165,107,.22), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(70,101,91,.30), transparent 30rem),
    linear-gradient(135deg, #1f302a 0%, #111a17 100%);
}

.login-panel {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: stretch;
}

.login-left {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 30px;
  padding: clamp(28px, 5vw, 58px);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-left h1 {
  font-size: clamp(40px, 6vw, 70px);
  letter-spacing: -.06em;
  line-height: .98;
  margin: 18px 0;
}

.login-left p {
  color: #e6dece;
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
}

.badge-soft {
  width: fit-content;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 9px 14px;
  color: #eee8dc;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 28px;
}

.feature-grid div {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 14px;
  font-weight: 750;
}

.login-card {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(18,25,21,.28);
  padding: 32px;
  align-self: center;
}

.login-card h2 {
  margin: 0 0 6px;
  font-size: 32px;
  letter-spacing: -.04em;
}

.demo-box {
  margin-top: 18px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.demo-box strong {
  color: var(--text);
}

@media (max-width: 1040px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .stats-grid,
  .grid-2,
  .camera-grid,
  .login-panel {
    grid-template-columns: 1fr;
  }

  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .login-left {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .main-content,
  .sidebar,
  .login-page {
    padding: 18px;
  }

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

  .grid-form {
    grid-template-columns: 1fr;
  }

  .form-actions,
  .filter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar h1 {
    font-size: 30px;
  }

  .camera-box {
    min-height: 280px;
  }
}

.table-input {
  min-width: 150px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 14px;
}

.action-cell {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.journal-actions {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

select.table-input {
  min-width: 190px;
}


/* Soft elegant professional refinements */
.sidebar,
.login-left,
.login-card,
.card,
.stat-card {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.brand-title,
.topbar h1,
.login-left h1,
.login-card h2,
.card h2 {
  font-feature-settings: "liga" 1, "kern" 1;
}

.nav a.active {
  box-shadow: inset 3px 0 0 var(--accent);
}

.btn.primary {
  box-shadow: 0 10px 22px rgba(70,101,91,.18);
}

.btn.secondary {
  background: linear-gradient(180deg, #ffffff, var(--primary-soft));
}

.card:hover,
.stat-card:hover {
  box-shadow: 0 22px 52px rgba(52, 64, 56, .11);
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

table {
  background: #fff;
}

th {
  background: #fbfaf7;
  color: #667068;
  font-weight: 800;
}

td {
  color: #27332e;
}

input,
textarea,
select {
  color: #27332e;
}

::placeholder {
  color: #9a9f98;
}

.login-left {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.badge-soft,
.feature-grid div {
  backdrop-filter: blur(10px);
}

.demo-box {
  background: linear-gradient(180deg, #ffffff, #fbfaf7);
}


/* Mobile-first refinement for field attendance usage */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

.table-wrap {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.table-wrap::after {
  content: "Geser tabel ke samping bila kolom belum terlihat";
  display: none;
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 820px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 30;
    height: auto;
    padding: 14px 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 12px 28px rgba(18,25,21,.18);
  }

  .brand {
    margin-bottom: 12px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .brand-subtitle {
    display: none;
  }

  .user-mini {
    padding: 10px;
    margin-bottom: 12px;
  }

  .avatar {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .user-name {
    font-size: 14px;
  }

  .user-role {
    font-size: 11px;
  }

  .nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 14px;
  }

  .nav a.active {
    box-shadow: none;
    background: rgba(255,255,255,.18);
  }

  .main-content {
    padding: 18px 14px 28px;
  }

  .topbar {
    margin-bottom: 16px;
  }

  .topbar h1 {
    font-size: 28px;
  }

  .topbar p {
    font-size: 14px;
    line-height: 1.55;
  }

  .card,
  .stat-card,
  .login-card,
  .login-left {
    border-radius: 20px;
    padding: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
  }

  .stat-card strong {
    font-size: 28px;
  }

  .section-head {
    display: grid;
    gap: 10px;
  }

  .section-head .pill {
    width: fit-content;
  }

  .info-list div,
  .journal-item div {
    display: grid;
    gap: 4px;
  }

  .info-list strong {
    text-align: left;
    overflow-wrap: anywhere;
  }

  input,
  textarea,
  select,
  .btn {
    min-height: 48px;
    font-size: 16px;
  }

  .btn,
  .form-actions .btn,
  .button-stack .btn,
  .filter-form .btn {
    width: 100%;
  }

  .filter-form > div,
  .filter-form label {
    width: 100%;
  }

  .check-grid {
    grid-template-columns: 1fr 1fr;
  }

  .camera-grid {
    gap: 14px;
  }

  .camera-box {
    min-height: unset;
    aspect-ratio: 3 / 4;
    max-height: 68vh;
    border-radius: 18px;
  }

  video,
  .preview {
    max-height: 68vh;
    object-fit: cover;
  }

  .capture-panel {
    gap: 10px;
  }

  .status-line,
  .warning-box,
  .success-box {
    font-size: 13px;
    line-height: 1.5;
  }

  table {
    min-width: 760px;
  }

  .table-wrap::after {
    display: block;
  }

  .action-cell {
    align-items: stretch;
  }

  .action-cell .btn,
  .journal-actions .btn {
    width: auto;
  }
}

@media (max-width: 520px) {
  .login-page {
    padding: 14px;
    place-items: start center;
  }

  .login-panel {
    gap: 14px;
  }

  .login-left h1 {
    font-size: 32px;
    line-height: 1.06;
    margin: 12px 0;
  }

  .login-left p {
    font-size: 14px;
    line-height: 1.55;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .login-card h2 {
    font-size: 26px;
  }

  .main-content {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .grid-2,
  .grid-form,
  .camera-grid,
  .login-panel {
    grid-template-columns: 1fr;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .topbar h1 {
    font-size: 26px;
  }

  .topbar p {
    font-size: 13px;
  }

  .card,
  .stat-card {
    padding: 15px;
  }

  .camera-box {
    aspect-ratio: 3 / 4;
    max-height: 64vh;
  }

  .journal-actions {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .journal-actions .btn,
  .action-cell .btn,
  .table-input,
  select.table-input {
    width: 100%;
    min-width: 0;
  }

  .demo-box {
    font-size: 13px;
  }
}

/* Account deletion controls */
.btn.danger {
  background: var(--danger-soft);
  border-color: rgba(166, 63, 55, .24);
  color: var(--danger);
}

.btn.danger:hover {
  background: #f6d7d1;
}

.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: .55;
  transform: none;
}

.action-cell form {
  display: inline-flex;
  margin: 0;
}

/* Typography, spacing, and security-update UI refinements */
html {
  font-size: 15px;
}

body {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.brand-title {
  font-size: 17px;
  line-height: 1.2;
}

.brand-subtitle,
.user-role {
  font-size: 11.5px;
}

.nav a,
.nav-logout button {
  font-size: 14px;
  line-height: 1.25;
}

.nav-logout {
  margin: 0;
}

.nav-logout button {
  width: 100%;
  border: 0;
  color: #eee8dc;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 650;
  text-align: left;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.nav-logout button:hover {
  background: rgba(255,255,255,.14);
  color: #ffffff;
}

.topbar h1 {
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.topbar p {
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 920px;
}

.card,
.stat-card {
  padding: 20px;
}

.section-head h2,
.card h2 {
  font-size: 20px;
  line-height: 1.25;
}

.section-head p,
.card p,
.muted,
.info-list,
.clean-list {
  font-size: 14px;
}

.stat-card span {
  font-size: 13px;
}

.stat-card strong {
  font-size: 30px;
  line-height: 1.1;
}

.btn {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
}

.btn.small {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 13px;
}

.form {
  gap: 11px;
}

.form label {
  font-size: 13px;
  line-height: 1.3;
}

.form-help {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 12.5px;
}

input,
textarea,
select {
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.35;
}

.table-input {
  min-width: 145px;
  padding: 8px 9px;
  font-size: 13px;
  border-radius: 10px;
}

.admin-table {
  min-width: 980px;
}

.admin-table.wide {
  min-width: 1320px;
}

th {
  font-size: 12.5px;
  padding: 10px 12px;
}

td {
  font-size: 13.5px;
  padding: 12px;
}

td span {
  font-size: 12.5px;
}

.flash,
.status-line,
.success-box,
.warning-box {
  font-size: 13.5px;
  line-height: 1.5;
}

.admin-mode-box {
  margin-bottom: 16px;
}

.login-left h1 {
  font-size: clamp(34px, 4.7vw, 54px);
  line-height: 1.04;
}

.login-left p {
  font-size: 16px;
  line-height: 1.65;
}

.login-card h2 {
  font-size: 28px;
}

@media (max-width: 820px) {
  html {
    font-size: 14px;
  }

  body {
    font-size: 14px;
  }

  .nav-logout {
    flex: 0 0 auto;
  }

  .nav-logout button {
    white-space: nowrap;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 14px;
  }

  .topbar h1 {
    font-size: 25px;
  }

  .topbar p {
    font-size: 13.5px;
  }

  .section-head h2,
  .card h2 {
    font-size: 18px;
  }

  .card,
  .stat-card {
    padding: 16px;
  }

  .stat-card strong {
    font-size: 26px;
  }

  input,
  textarea,
  select,
  .btn {
    min-height: 46px;
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  .topbar h1 {
    font-size: 24px;
  }

  .login-left h1 {
    font-size: 30px;
  }

  .login-card h2 {
    font-size: 24px;
  }

  .section-head p,
  .card p,
  .muted {
    font-size: 13.5px;
  }
}
