:root {
  color-scheme: light;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #f4f7fb;
  color: #142033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.btn {
  border-radius: 8px;
  font-weight: 700;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.btn-primary {
  background: #0b63ff;
  border-color: #0b63ff;
  box-shadow: 0 12px 24px rgba(11, 99, 255, .18);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #084fd0;
  border-color: #084fd0;
}

.btn-outline-primary {
  color: #0b63ff;
  border-color: rgba(11, 99, 255, .35);
}

.form-control {
  border-radius: 8px;
  border-color: #d8e1ee;
}

.form-control:focus,
.btn:focus,
.navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(11, 99, 255, .18);
}

::selection {
  background: #b8d6ff;
  color: #07172f;
}
