
:root {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17202a;
  background: #f4f6f8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

button,
input {
  font: inherit;
}

.shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

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

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 28px;
}

.card {
  background: white;
  border: 1px solid #dde3e8;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.login-card {
  width: min(440px, 100%);
  margin: 70px auto;
  padding: 28px;
}

form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd3da;
  border-radius: 10px;
  background: white;
}

button {
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  background: #111827;
  color: white;
}

button.secondary {
  background: white;
  color: #111827;
  border: 1px solid #cbd3da;
}

.muted {
  color: #667085;
}

.message {
  margin-top: 16px;
  color: #b42318;
}

.hidden {
  display: none !important;
}

.dashboard-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
}

.tenant-grid {
  display: grid;
  gap: 18px;
}

.tenant-card {
  background: white;
  border: 1px solid #dde3e8;
  border-radius: 16px;
  padding: 24px;
}

.tenant-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}

.status {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #027a48;
  font-size: 13px;
  font-weight: 800;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.detail-label {
  display: block;
  margin-bottom: 4px;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  font-weight: 650;
  word-break: break-word;
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 22px, 1100px);
    padding-top: 20px;
  }

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

  .topbar {
    align-items: flex-start;
  }
}
