:root {
  --bg: #f5f5f5;
  --sidebar-bg: #d4d4d4;
  --wireguard-sidebar-bg: #f1f1f3;
  --panel: #ffffff;
  --text: #1a1a1a;
  --muted: #626262;
  --border: #171717;
  --soft-border: #ababab;
  --accent: #88287d;
  --accent-soft: #c9c9c9;
  --green: #1ac537;
  --green-soft: #d1fadf;
  --cyan: #4bbdbd;
  --red-soft: #ffd1d1;
  --shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ---------- Shared layout ---------- */
.app-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
}

.sidebar {
  background: var(--sidebar-bg);
  padding: 14px 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid #c3c3c3;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 2px solid #111;
  border-radius: 12px;
  background: #ececec;
  padding: 8px 14px;
  font-size: 46px;
  font-weight: 700;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 14px;
  padding: 8px 12px;
  border: 1px solid transparent;
  font-size: 38px;
  font-weight: 600;
  color: #171717;
}

.nav-item:hover {
  border-color: #9f9f9f;
}

.nav-item.active {
  background: #828282;
  color: #fff;
}

.nav-item.active img {
  filter: brightness(0) invert(1);
}

.nav-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.sidebar-subtitle {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #505050;
  font-weight: 700;
}

.sidebar-foot {
  margin-top: auto;
  border-top: 3px solid #111;
  padding-top: 12px;
  display: grid;
  gap: 2px;
}

.account-name {
  font-size: 45px;
  line-height: 1.05;
}

.account-id {
  color: #4a4a4a;
  font-size: 24px;
}

.logout-link {
  color: #3b3b3b;
  font-size: 26px;
  font-weight: 600;
}

.app-content {
  padding: 20px 28px;
  min-width: 0;
}

/* ---------- WireGuard split app mode ---------- */
.wireguard-mode {
  grid-template-columns: 286px minmax(0, 1fr);
}

.wireguard-sidebar {
  background: var(--wireguard-sidebar-bg);
}

.wireguard-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 50px;
  color: #881719;
  padding: 6px 8px;
}

.wireguard-brand img {
  width: 54px;
  height: 54px;
}

.wireguard-brand-line {
  width: calc(100% - 26px);
  margin: 0 auto 6px;
  border-top: 4px solid #881719;
}

.wireguard-sidebar .nav-item {
  font-size: 40px;
  background: #c9c9c9;
  color: #1e1e1e;
}

.wireguard-sidebar .nav-item.active {
  background: #c9c9c9;
  color: #1e1e1e;
  border-color: transparent;
}

/* ---------- Auth ---------- */
.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.figma-auth {
  background: #f5f5f5;
}

.auth-card {
  width: min(600px, 100%);
  background: #ededed;
  border: 1px solid #cecece;
  border-radius: 10px;
  padding: 40px 34px 30px;
}

.auth-title {
  margin: 0;
  font-size: clamp(52px, 4.5vw, 72px);
  line-height: 1;
  font-weight: 800;
}

.auth-subtitle {
  margin: 8px 0 30px;
  font-size: clamp(24px, 2.1vw, 40px);
  line-height: 1.05;
  font-weight: 700;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-form label {
  font-size: clamp(32px, 2.8vw, 52px);
  line-height: 1;
  font-weight: 600;
  color: #3f3f3f;
}

.auth-form input {
  height: 54px;
  border: 3px solid #2b2b2b;
  border-radius: 8px;
  background: #d9d9d9;
  font-size: 40px;
  padding: 8px 12px;
}

.forgot-link {
  font-size: 22px;
  color: #323232;
  margin-top: 2px;
  width: fit-content;
}

.btn-auth {
  margin-top: 10px;
}

/* ---------- Page primitives ---------- */
.page-header {
  margin-bottom: 16px;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1;
}

.page-title-underlined {
  margin-bottom: 18px;
}

.page-title-underlined h1 {
  margin: 0;
  font-size: clamp(50px, 4.7vw, 72px);
  line-height: 1;
  font-weight: 700;
}

.page-title-underlined::after {
  content: "";
  display: block;
  width: 230px;
  border-top: 5px solid #595959;
  margin-top: 10px;
}

.panel-section {
  margin-top: 22px;
}

.panel-section h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.6vw, 40px);
}

.panel-card {
  background: var(--panel);
  border: 1px solid #a9a9a9;
  border-radius: 14px;
  padding: 16px;
}

.panel-card h2,
.panel-card h3 {
  margin-top: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric-card {
  background: #d9d9d9;
  border: 1px solid #b4b4b4;
  border-radius: 14px;
  padding: 14px;
}

.metric-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.metric-card p {
  margin: 8px 0 0;
  font-size: 44px;
  line-height: 1;
}

.muted {
  color: var(--muted);
}

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

.list-item {
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: 10px 12px;
}

.list-item p {
  margin: 5px 0 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background: #fff;
}

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

th,
td {
  text-align: left;
  padding: 10px 11px;
  border-bottom: 1px solid #ececec;
  vertical-align: top;
}

th {
  background: #f4f4f4;
  font-weight: 700;
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.inline-form input,
.inline-form select {
  min-height: 42px;
  border: 1px solid #bcbcbc;
  border-radius: 9px;
  padding: 8px 10px;
  font-size: 16px;
  background: #fff;
}

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

.stack-form input,
.stack-form select,
.stack-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  background: #efefef;
  padding: 9px 12px;
  font-size: 18px;
}

.stack-form textarea {
  resize: vertical;
  min-height: 84px;
}

.tiny-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.form-error {
  margin: 0;
  color: #b31919;
  font-size: 15px;
  font-weight: 600;
}

code {
  background: #f0f0f0;
  border: 1px solid #dddddd;
  border-radius: 6px;
  padding: 1px 5px;
  word-break: break-word;
}

/* ---------- Buttons ---------- */
.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  min-height: 42px;
  padding: 8px 14px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: #e6e6e6;
  color: #2b2b2b;
  border-color: #cbcbcb;
}

.btn-danger {
  background: #ffa0a0;
  color: #e60000;
  border-color: #f38e8e;
}

.btn-green {
  background: #44a300;
  color: #fff;
}

.btn-outline-green {
  background: #c2ffd3;
  color: #000;
  border: 2px solid #00ff1e;
  border-radius: 20px;
}

.btn-cyan {
  background: var(--cyan);
  color: #fff;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
}

/* ---------- Customer Dashboard ---------- */
.figma-dashboard {
  max-width: 1120px;
}

.hero-pill {
  width: fit-content;
  background: #fff;
  border: 10px solid #d4d4d4;
  border-radius: 28px;
  padding: 6px 28px;
  margin-bottom: 20px;
}

.hero-pill h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  font-weight: 600;
}

.dashboard-top-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 14px;
}

.dash-card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 24px;
  padding: 14px;
}

.dash-card h3 {
  margin: 0;
  font-size: 24px;
  color: #383838;
  font-weight: 500;
}

.dash-card p {
  margin: 12px 0 0;
  font-size: clamp(32px, 2.8vw, 50px);
  line-height: 1;
  font-weight: 400;
}

.dash-card small {
  display: block;
  margin-top: 8px;
  color: #777;
  font-size: 14px;
}

.last-login-card {
  width: 205px;
  margin-left: auto;
  margin-bottom: 16px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 26px;
  padding: 12px;
}

.last-login-card h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: #383838;
}

.last-login-card p {
  margin: 12px 0 0;
  font-size: 44px;
  line-height: 1;
}

.service-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 188px;
  background: #fff;
  border-radius: 17px;
  padding: 8px 12px;
  box-shadow: 7px 8px 16px 2px rgba(0, 0, 0, 0.25);
  font-size: 28px;
}

.service-chip img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.service-wireguard { color: #881719; }
.service-email { color: #1bbbfa; }
.service-message { color: #1dc139; }
.service-calling { color: #1ac537; }

/* ---------- Customer My Plan ---------- */
.figma-plan {
  max-width: 1120px;
}

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

.plan-card {
  border: 1px solid #000;
  border-radius: 19px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.plan-card-top {
  min-height: 88px;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
}

.plan-card-top h3 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
}

.plan-card-top img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

.plan-card p,
.plan-card footer {
  margin: 0;
  padding: 0 14px;
}

.plan-card p {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  margin-top: 7px;
}

.plan-card footer {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 400;
  margin: 20px 0 16px;
}

.tone-wireguard,
.tone-wireguard .plan-card-top { background: #e1cbcb; }
.tone-texting,
.tone-texting .plan-card-top { background: #cde2ce; }
.tone-email,
.tone-email .plan-card-top { background: #c2c8ea; }
.tone-calling,
.tone-calling .plan-card-top { background: #cde2ce; }

.tone-wireguard .plan-card-top h3 { color: #8a1820; }
.tone-texting .plan-card-top h3,
.tone-calling .plan-card-top h3 { color: #1ac537; }
.tone-email .plan-card-top h3 { color: #1d76f2; }

/* ---------- Customer Settings ---------- */
.figma-settings {
  max-width: 1140px;
}

.settings-head-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-bottom: 16px;
}

.ntfy-card {
  border-top: 3px solid #000;
  padding-top: 12px;
}

.ntfy-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ntfy-head img {
  width: 82px;
  height: 82px;
  border-radius: 16px;
}

.ntfy-head h2 {
  margin: 0;
  font-size: clamp(40px, 3.4vw, 58px);
  color: #2e893f;
}

.ntfy-topic {
  margin: 4px 0 10px;
  font-size: clamp(34px, 3vw, 52px);
  color: #4db49f;
  font-weight: 600;
}

.profile-mini-card {
  border: 0;
  background: transparent;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
}

.profile-avatar {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: #d9d9d9;
}

.profile-mini-card h3 {
  margin: 0;
  font-size: clamp(42px, 3.6vw, 58px);
  color: #3e3e3e;
}

.profile-mini-card .btn {
  min-width: 290px;
  min-height: 63px;
  border-radius: 17px;
  font-size: 44px;
  color: #545454;
  background: #d9d9d9;
  border-color: transparent;
}

.password-card {
  margin-top: 12px;
  max-width: 470px;
}

.password-card h2 {
  margin: 0 0 8px;
  font-size: clamp(42px, 3.6vw, 56px);
}

.password-card .stack-form input {
  border-radius: 16px;
  min-height: 58px;
  font-size: 34px;
}

.password-card .btn-danger {
  width: 182px;
  min-height: 46px;
  border-radius: 8px;
  font-size: 46px;
  line-height: 1;
}

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

/* ---------- WireGuard page ---------- */
.wireguard-app {
  max-width: 1120px;
}

.wireguard-title-row h1 {
  margin: 0;
  font-size: clamp(60px, 5vw, 84px);
}

.wireguard-metrics .metric-card {
  background: #d9d9d9;
}

.wireguard-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

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

.wireguard-peer-card {
  background: #fff;
  border: 1px solid #999;
  border-radius: 12px;
  padding: 10px;
  display: grid;
  gap: 6px;
}

.wireguard-peer-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.peer-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.peer-device-icon {
  width: 24px;
  height: 24px;
}

.wireguard-peer-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
}

.peer-meta-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 3px;
  column-gap: 10px;
}

.peer-meta-grid p {
  margin: 0;
  font-size: 13px;
}

.peer-meta-grid p:nth-child(odd) {
  color: #575757;
}

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

.peer-actions .btn {
  min-height: 34px;
  border-radius: 7px;
  padding: 6px 10px;
  font-size: 13px;
}

.status-pill {
  min-width: 90px;
  text-align: center;
  border-radius: 20px;
  padding: 3px 8px;
  font-size: 14px;
  border: 1px solid transparent;
}

.status-pill.active {
  background: #d1fadf;
  border-color: #00bd4b;
  color: #12b76a;
}

.status-pill.offline {
  background: #fad1d1;
  border-color: #ff0004;
  color: #b71212;
}

.status-pill.moving {
  background: #fff2cb;
  border-color: #f0b000;
  color: #7e6000;
}

.status-pill.disabled,
.status-pill.deleted {
  background: #ececec;
  border-color: #9f9f9f;
  color: #555;
}

/* ---------- Create Peer modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.create-peer-modal {
  width: min(920px, 100%);
  border-radius: 36px;
  background: #e7e7e7;
  box-shadow: 0 10px 10.2px 16px rgba(0, 0, 0, 0.25);
  padding: 20px 24px 18px;
  position: relative;
}

.modal-close {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.create-peer-modal h2 {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(44px, 3.7vw, 66px);
}

.create-peer-modal .stack-form {
  gap: 12px;
}

.create-peer-modal .stack-form label {
  font-size: 40px;
  line-height: 1;
  color: #616161;
  font-weight: 600;
}

.create-peer-modal .stack-form input[type="text"],
.create-peer-modal .stack-form input:not([type]),
.create-peer-modal .stack-form input[name="peer_name"],
.create-peer-modal .stack-form input[name="device_name"] {
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  background: #6d6d6d;
  color: #fff;
  font-size: 40px;
}

.create-peer-modal input::placeholder {
  color: rgba(255, 255, 255, 0.95);
}

.create-peer-modal-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 16px;
}

.create-peer-modal-grid h3 {
  margin: 0 0 8px;
  font-size: 40px;
  color: #616161;
}

.country-list {
  display: grid;
  gap: 8px;
}

.radio-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 34px;
}

.radio-line input[type="radio"] {
  width: 28px;
  height: 28px;
  margin: 0;
  accent-color: #000;
}

.ip-badge {
  background: #707070;
  color: #fff;
  border-radius: 11px;
  border: 0;
  min-width: 127px;
  min-height: 52px;
  font-size: 34px;
  font-weight: 500;
}

.selected-ip {
  margin: 12px 0;
  font-size: 38px;
  color: #5a5a5a;
}

.selected-ip.invalid {
  color: #b31919;
}

.ip-family-row {
  display: flex;
  gap: 18px;
}

.ip-family-row .radio-line input[type="radio"] {
  width: 24px;
  height: 24px;
  accent-color: #57a166;
}

.create-peer-modal .muted {
  font-size: 20px;
  color: #737373;
}

.create-peer-modal .btn-cyan {
  min-height: 63px;
  font-size: 52px;
}

/* ---------- Admin ---------- */
.admin-customers {
  display: grid;
  gap: 20px;
}

.admin-create-panel {
  border-radius: 16px;
  border: 2px solid #7f7f7f;
  background: #ececec;
}

.admin-create-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 2.8vw, 52px);
}

.admin-create-panel .stack-form input,
.admin-create-panel .stack-form select,
.admin-create-panel .stack-form textarea {
  min-height: 58px;
  border-radius: 11px;
  border-color: #b9b9b9;
  background: #efefef;
  font-size: 40px;
}

.admin-create-panel .stack-form textarea {
  min-height: 98px;
}

.admin-checkbox {
  justify-content: flex-end;
  font-size: 20px;
}

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

/* ---------- Legacy compatibility ---------- */
.layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
}

.content {
  padding: 20px 28px;
}

.auth-panel {
  width: min(620px, 100%);
  border-radius: 10px;
  border: 1px solid #cecece;
  padding: 30px;
  background: #f3f3f3;
}

/* ---------- Responsive ---------- */
@media (max-width: 1380px) {
  .nav-item {
    font-size: 30px;
  }

  .nav-icon {
    width: 30px;
    height: 30px;
  }

  .brand-chip {
    font-size: 40px;
  }

  .service-chip {
    font-size: 22px;
  }

  .auth-form label {
    font-size: 30px;
  }

  .auth-form input {
    font-size: 30px;
  }

  .ntfy-topic {
    font-size: 30px;
  }

  .profile-mini-card .btn {
    font-size: 32px;
  }
}

@media (max-width: 1160px) {
  .app-layout,
  .wireguard-mode,
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar,
  .wireguard-sidebar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 10px;
    gap: 8px;
  }

  .sidebar-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .sidebar-subtitle {
    display: none;
  }

  .sidebar-foot {
    border-top-width: 2px;
  }

  .account-name {
    font-size: 30px;
  }

  .account-id,
  .logout-link {
    font-size: 18px;
  }

  .dashboard-top-grid,
  .figma-plan-grid,
  .settings-grid,
  .settings-head-grid,
  .wireguard-peer-grid,
  .create-peer-modal-grid,
  .admin-module-grid {
    grid-template-columns: 1fr;
  }

  .last-login-card {
    margin-left: 0;
  }

  .create-peer-modal h2 {
    text-align: left;
    margin-left: 80px;
  }

  .create-peer-modal .stack-form input[name="peer_name"],
  .create-peer-modal .stack-form input[name="device_name"] {
    font-size: 30px;
  }

  .radio-line {
    font-size: 24px;
  }

  .create-peer-modal .btn-cyan {
    font-size: 36px;
  }
}

@media (max-width: 760px) {
  .app-content,
  .content {
    padding: 14px;
  }

  .nav-item {
    font-size: 20px;
    min-height: 40px;
  }

  .brand-chip {
    font-size: 26px;
    padding: 7px 10px;
  }

  .hero-pill {
    border-width: 6px;
    border-radius: 18px;
    padding: 6px 12px;
  }

  .hero-pill h1 {
    font-size: 44px;
  }

  .dash-card p,
  .metric-card p,
  .plan-card-top h3,
  .page-title-underlined h1,
  .page-header h1 {
    font-size: 30px;
  }

  .dash-card h3,
  .plan-card p,
  .panel-card h2,
  .panel-card h3,
  .panel-section h2 {
    font-size: 20px;
  }

  .plan-card footer {
    font-size: 24px;
  }

  .service-chip {
    min-width: 144px;
    font-size: 18px;
  }

  .service-chip img {
    width: 30px;
    height: 30px;
  }

  .auth-card {
    padding: 24px 18px;
  }

  .auth-title {
    font-size: 48px;
  }

  .auth-subtitle {
    font-size: 24px;
  }

  .auth-form label {
    font-size: 24px;
  }

  .auth-form input {
    height: 50px;
    font-size: 24px;
  }

  .forgot-link {
    font-size: 16px;
  }

  .btn {
    font-size: 15px;
    min-height: 38px;
  }

  .create-peer-modal {
    border-radius: 20px;
    padding: 16px;
  }

  .modal-close {
    width: 44px;
    height: 44px;
    font-size: 24px;
    left: 14px;
    top: 14px;
  }

  .create-peer-modal h2 {
    margin-left: 56px;
    font-size: 34px;
  }

  .create-peer-modal .stack-form label,
  .create-peer-modal-grid h3 {
    font-size: 24px;
  }

  .selected-ip {
    font-size: 24px;
  }

  .password-card .stack-form input,
  .admin-create-panel .stack-form input,
  .admin-create-panel .stack-form select,
  .admin-create-panel .stack-form textarea {
    font-size: 18px;
  }
}
