@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --bg-main: #f4f6f8;
  --bg-panel: #ffffff;
  --bg-panel-2: #f8fafc;
  --bg-panel-3: #f1f5f9;
  --bg-header: #ffffff;

  --text-main: #1f2937;
  --text-soft: #4b5563;
  --text-muted: #6b7280;

  --line: #e4e9ef;
  --line-strong: #d2dae4;

  --accent: #3f4b5c;
  --accent-strong: #2f3a48;
  --accent-soft: #eef2f6;

  --ok: #2f8a57;
  --ok-soft: #e9f7ef;
  --warn: #b9842b;
  --warn-soft: #fff5e6;
  --danger: #bf4b4b;
  --danger-soft: #fdf0f0;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-1: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow-2: 0 12px 28px rgba(15, 23, 42, 0.12);

  --font-ui: 'Manrope', 'IBM Plex Sans', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-ui);
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.4;
  font-size: 14px;
  caret-color: transparent;
}

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

img {
  display: block;
  max-width: 100%;
}

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

input,
textarea,
select,
[contenteditable='true'] {
  caret-color: auto;
}

input[type='date']::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: none;
}

.page {
  min-height: 100vh;
}

.public-body {
  background: radial-gradient(circle at 18% 12%, #ffffff 0%, var(--bg-main) 50%);
}
