:root {
  --bg: #07111f;
  --panel: #0d1b2e;
  --panel2: #13263f;
  --text: #eaf1ff;
  --muted: #91a4bf;
  --line: rgba(255,255,255,.10);
  --accent: #4f8cff;
  --accent2: #          d4ff;
  --danger: #ff5a6d;
  --success: #33d69f;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79,140,255,.34), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0,212,255,.18), transparent 30%),
    linear-gradient(135deg, #050b15 0%, #07111f 48%, #0b1b30 100%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

/* LOGIN */

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.auth-page::before,
.auth-page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  pointer-events: none;
}

.auth-page::before {
  width: 460px;
  height: 460px;
  left: -160px;
  top: -160px;
  background: rgba(79,140,255,.20);
}

.auth-page::after {
  width: 420px;
  height: 420px;
  right: -150px;
  bottom: -150px;
  background: rgba(0,212,255,.14);
}

.auth-card {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 1;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(15,31,53,.96), rgba(8,18,32,.94));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow:
    0 28px 90px rgba(0,0,0,.46),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(24px);
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(79,140,255,.85), transparent 38%, rgba(0,212,255,.55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 7px;
  margin-bottom: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
}

.tab {
  border: 0;
  border-radius: 13px;
  padding: 13px 14px;
  background: transparent;
  color: #9fb1ca;
  font-weight: 850;
  transition: .22s ease;
}

.tab:hover {
  color: #fff;
  background: rgba(255,255,255,.065);
}

.tab.active {
  color: #fff;
  background: linear-gradient(135deg, #4f8cff, #00d4ff);
  box-shadow: 0 14px 30px rgba(79,140,255,.34);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.auth-form h2,
.form-header h2 {
  margin: 0 0 5px;
  color: #f4f8ff;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -.9px;
}

.auth-form p,
.form-header p {
  margin: 0;
  color: #9fb1ca;
  font-size: 14.5px;
  line-height: 1.55;
}

.form-header {
  margin-bottom: 2px;
}

#forgotPasswordForm .form-header,
#resetPasswordForm .form-header {
  padding: 16px;
  border: 1px solid rgba(79,140,255,.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(0,212,255,.12), transparent 42%),
    rgba(79,140,255,.10);
}

#forgotPasswordForm .form-header h2,
#resetPasswordForm .form-header h2 {
  font-size: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #d9e5f8;
  font-size: 15px;
  font-weight: 750;
}

.label-row,
.forgot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.forgot-row {
  justify-content: flex-end;
  margin-top: -7px;
  margin-bottom: 2px;
}

.forgot-link {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: #b9ddff;
  background: rgba(79,140,255,.09);
  font-size: 12.5px;
  font-weight: 850;
  white-space: nowrap;
  transition: .2s ease;
}

.forgot-link:hover {
  color: #fff;
  background: rgba(79,140,255,.18);
  box-shadow: inset 0 0 0 1px rgba(159,208,255,.24);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  padding: 14px 15px;
  color: #eaf1ff;
  outline: none;
  background: rgba(255,255,255,.075);
  transition: .22s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7386a3;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.095);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4f8cff;
  background: rgba(255,255,255,.105);
  box-shadow: 0 0 0 4px rgba(79,140,255,.16);
}

.form-group input[type="email"] {
  padding-left: 15px;
  background-image:
    linear-gradient(135deg, rgba(79,140,255,.28), rgba(0,212,255,.16)),
    linear-gradient(rgba(255,255,255,.075), rgba(255,255,255,.075));
  background-position:
    13px 50%,
    0 0;
  background-size:
    24px 24px,
    100% 100%;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(159,208,255,.04);
}

.form-group input[type="email"]:focus {
  background-image:
    linear-gradient(135deg, rgba(79,140,255,.44), rgba(0,212,255,.28)),
    linear-gradient(rgba(255,255,255,.105), rgba(255,255,255,.105));
}

.form-group select {
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, #c7d4ea 50%),
    linear-gradient(135deg, #c7d4ea 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 7px 7px;
  background-repeat: no-repeat;
}

.form-group select option {
  background: #0d1b2e;
  color: #eaf1ff;
}

.password-wrap {
  position: relative;
}

.password-wrap input {
  padding-right: 54px;
}

.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 39px;
  height: 39px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 13px;
  color: #d9e5f8;
  background: rgba(255,255,255,.09);
  transition: .2s ease;
}

.password-toggle:hover {
  color: #fff;
  background: rgba(79,140,255,.24);
}

.primary-btn {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 15px 18px;
  margin-top: 4px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #4f8cff, #00d4ff);
  box-shadow: 0 18px 36px rgba(79,140,255,.30);
  transition: .22s ease;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(79,140,255,.40);
}

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

.link-btn {
  width: 100%;
  border: 1px solid rgba(159,208,255,.22);
  border-radius: 14px;
  padding: 12px 14px;
  color: #c7e2ff;
  background: rgba(79,140,255,.08);
  font-weight: 850;
  transition: .2s ease;
}

.link-btn:hover {
  color: #fff;
  background: rgba(79,140,255,.16);
  border-color: rgba(159,208,255,.36);
}

.auth-info {
  margin-top: 16px;
  padding: 14px 15px;
  border-radius: 16px;
  color: #c7d4ea;
  font-size: 14px;
  line-height: 1.5;
  background: rgba(79,140,255,.11);
  border: 1px solid rgba(79,140,255,.18);
}

.message {
  margin-top: 6px;
  color: #9fb1ca;
  font-size: 14px;
}

.terms-box {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
}

.terms-box input {
  margin-top: 3px;
  accent-color: #4f8cff;
}

.terms-box label {
  color: #c7d4ea;
  font-size: 13px;
  line-height: 1.5;
}

/* SISTEMA */

.app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 292px 1fr;
  color: #172033;
  background:
    radial-gradient(circle at top right, rgba(79,140,255,.12), transparent 32%),
    linear-gradient(180deg, #f7faff 0%, #eef3f9 100%);
}

.sidebar {
  min-height: 100vh;
  position: sticky;
  top: 0;
  align-self: start;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #eaf1ff;
  background: #0d1b2e;
  border-right: 1px solid rgba(255,255,255,.08);
  box-shadow: 18px 0 50px rgba(13,27,46,.13);
  overflow-y: auto;
}

.sidebar-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: -6px -6px 4px;
  padding: 14px 14px 18px;
  background: rgba(79, 140, 255, 0.16);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.sidebar-head strong,
.sidebar-head span {
  display: block;
}

.sidebar-head strong {
  font-size: 16px;
  color: #ffffff;
}

.sidebar-head span {
  margin-top: 4px;
  color: #b9d0ff;
  font-size: 13px;
}

.brand-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, #4f8cff, #00d4ff);
  box-shadow: 0 15px 30px rgba(79,140,255,.34);
}

.brand-badge.small {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.nav-item,
.logout {
  width: 100%;
  border: 0;
  border-radius: 15px;
  padding: 13px 14px;
  text-align: left;
  color: #c7d4ea;
  background: transparent;
  font-weight: 800;
  transition: .2s ease;
}

#adminNav .nav-item[data-view="pending"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: #4f8cff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-item.active {
  color: #fff;
  background: #2f558f;
  box-shadow: inset 3px 0 0 #2f64c8;
}

.logout {
  flex: 0 0 auto;
  margin-top: 0;
  color: #ffb7c1;
  background: rgba(255,90,109,.10);
  border: 1px solid rgba(255,90,109,.15);
}

.logout:hover {
  color: #fff;
  background: rgba(255,90,109,.18);
}

.logout.secondary {
  color: #c7e2ff;
  background: rgba(79,140,255,.10);
  border-color: rgba(79,140,255,.18);
}

.logout.secondary:hover {
  background: rgba(79,140,255,.18);
}

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

.topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid #e3e9f3;
  box-shadow: 0 16px 44px rgba(23,32,51,.07);
  backdrop-filter: blur(16px);
}

.topbar h2 {
  margin: 0;
  color: #172033;
  font-size: 29px;
  letter-spacing: -.8px;
}

.topbar p {
  margin: 6px 0 0;
  color: #68778f;
}

.menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 15px;
  color: #172033;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23,32,51,.10);
}

.panel {
  display: none;
}

.panel.active {
  display: block;
  animation: fadeUp .22s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}

.section-head h3 {
  margin: 0;
  color: #172033;
  font-size: 21px;
  letter-spacing: -.4px;
}

.section-head p {
  margin: 6px 0 0;
  color: #68778f;
}

.dashboard-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 18px 36px;
  border: 1px solid #e3e9f3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23,32,51,.04);
  border-radius: 22px;
}

.dashboard-intro h3 {
  margin: 0;
  color: #172033;
  font-size: 18px;
}

.dashboard-intro p {
  max-width: 760px;
  margin: 4px 0 0;
  color: #68778f;
  line-height: 1.45;
}

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

.users-groups {
  display: grid;
  gap: 18px;
}

.users-toolbar {
  margin-bottom: 14px;
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, .9fr) auto;
}

.user-group {
  display: grid;
  gap: 10px;
  align-items: stretch;
}

.users-group-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-height: 0;
  padding-left: 30px;
}

.users-group-head p {
  margin: 4px 0 0;
  color: #68778f;
  font-size: 13px;
  line-height: 1.35;
  min-height: 0;
  max-width: 720px;

}

.users-group-head span {
  display: inline-flex;
  align-items: center;
  min-width: 34px;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #2f64c8;
  background: #eaf2ff;
  font-size: 12px;
  font-weight: 850;
}

.compact-user-table {
  min-width: 860px;
}

.user-group .table-card {
  min-height: 0;
}

.stat,
.table-card,
.system-card,
.empty,
.modal form {
  background: rgba(255,255,255,.94);
  border: 1px solid #e3e9f3;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(23,32,51,.075);
}

.stat {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  right: -30px;
  top: -30px;
  border-radius: 999px;
  background: rgba(79,140,255,.11);
}

.stat span {
  display: block;
  color: #68778f;
  font-size: 15px;
  font-weight: 850;
}

.stat strong {
  display: block;
  margin-top: 6px;
  color: #172033;
  font-size: 34px;
  letter-spacing: -1px;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 18px;
}

.system-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: .24s ease;
}

.system-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(23,32,51,.13);
}

.system-img {
  height: 142px;
  display: grid;
  place-items: center;
  color: #2f64c8;
  font-size: 35px;
  font-weight: 950;
  background:
    radial-gradient(circle at top left, rgba(79,140,255,.28), transparent 32%),
    linear-gradient(135deg, #dfeaff, #e9fbff);
  background-size: cover;
  background-position: center;
}

.system-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 18px;
}

.system-body h4 {
  margin: 0;
  color: #172033;
  font-size: 18px;
  letter-spacing: -.3px;
}

.system-body p {
  flex: 1 1 auto;
  min-height: 42px;
  margin: 8px 0 16px;
  color: #68778f;
  line-height: 1.45;
}

.system-body a {
  margin-top: auto;
}

.system-body a,
.primary,
.mini,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 13px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 850;
  transition: .2s ease;
}

.system-body a,
.primary,
.mini {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #4f8cff);
  box-shadow: 0 10px 24px rgba(37,99,235,.22);
}

.system-body a:hover,
.primary:hover,
.mini:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37,99,235,.28);
}

.ghost {
  color: #2f3b52;
  background: #edf2f7;
}

.ghost:hover {
  background: #e3eaf3;
}

.mini {
  padding: 8px 11px;
  font-size: 13px;
}

.mini.danger {
  background: linear-gradient(135deg, #dc3545, #ff5a6d);
  box-shadow: 0 10px 24px rgba(220,53,69,.20);
}

.inline-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr)) auto;
  gap: 11px;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e3e9f3;
  box-shadow: 0 16px 36px rgba(23,32,51,.055);
}

.inline-form.compact {
  grid-template-columns: minmax(180px,260px) 1fr auto;
}

.inline-form.logs-filter {
  grid-template-columns: minmax(120px, 160px) minmax(150px, 1fr) minmax(190px, 1fr) minmax(190px, 1fr) auto auto;
}

.inline-form input,
.inline-form select,
.modal input,
.modal select {
  min-width: 0;
  border: 1px solid #d9e2ef;
  border-radius: 14px;
  padding: 12px 13px;
  color: #172033;
  background: #fff;
  outline: none;
  transition: .2s ease;
}

.inline-form input:focus,
.inline-form select:focus,
.modal input:focus,
.modal select:focus {
  border-color: #4f8cff;
  box-shadow: 0 0 0 4px rgba(79,140,255,.14);
}

.table-card {
  overflow-x: auto;
}

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

.data-table th,
.data-table td {
  padding: 15px 17px;
  border-bottom: 1px solid #e8edf5;
  text-align: left;
  vertical-align: middle;
}

.data-table th {
  color: #68778f;
  background: #f8fafd;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .45px;
}

.data-table td {
  color: #273247;
}

.data-table small {
  color: #68778f;
}

.data-table tr:hover td {
  background: #f9fbff;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

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

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

.badge.ok {
  color: #067647;
  background: #dff8eb;
}

.badge.warn {
  color: #946200;
  background: #fff3cd;
}

.badge.bad {
  color: #b42332;
  background: #ffe4e8;
}

.empty {
  padding: 24px;
  color: #68778f;
}

.toast {
  position: fixed;
  right: 22px;
  top: 22px;
  z-index: 20;
  max-width: min(420px, calc(100vw - 44px));
  padding: 14px 16px;
  border-radius: 16px;
  color: #fff;
  background: #172033;
  box-shadow: var(--shadow);
}

.toast.error {
  background: #b42332;
}

.toast.success {
  background: #067647;
}

.modal {
  width: min(640px, calc(100vw - 32px));
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(7,17,31,.68);
  backdrop-filter: blur(4px);
}

.modal form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.modal h3 {
  margin: 0;
  color: #172033;
  font-size: 22px;
  letter-spacing: -.4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e3e9f3;
}

.modal label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px;
  border: 1px solid #e3e9f3;
  border-radius: 8px;
  background: #f8fafd;
  color: #2f3b52;
  font-weight: 800;
}

#approveForm > label:nth-of-type(3) {
  background: #fffaf2;
  border-color: #fde4bc;
}

#approveForm > label:nth-of-type(4),
#approveForm > label:nth-of-type(5) {
  background: #f6f9ff;
  border-color: #dce8ff;
}

.selected-systems {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 240px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #d9e2ef;
  border-radius: 10px;
  background: #f8fafd;
}

.selected-system {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid #e3e9f3;
  border-radius: 8px;
  background: #fff;
  color: #172033;
  font-weight: 700;
}

.selected-system button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  color: #b42332;
  background: #ffe4e8;
  cursor: pointer;
  font-weight: 900;
}

.add-system-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.add-system-row select {
  width: 100%;
}

.empty.compact {
  padding: 10px;
  box-shadow: none;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* RESPONSIVO */

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

  .sidebar {
    position: fixed;
    z-index: 5;
    left: -310px;
    width: 292px;
    transition: .22s ease;
    box-shadow: var(--shadow);
  }

  .sidebar.open {
    left: 0;
  }

  .menu {
    display: grid;
    place-items: center;
  }

  .content {
    padding: 20px;
  }

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

  .inline-form,
  .inline-form.compact,
  .inline-form.logs-filter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .auth-page {
    padding: 18px;
  }

  .auth-card {
    padding: 24px;
    border-radius: 26px;
  }

  .auth-form h2,
  .form-header h2 {
    font-size: 26px;
  }

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

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

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-meta {
    justify-content: flex-start;
  }
}
