﻿body {
  font-family: "Rubik", sans-serif;
  margin: 0;
}

.caption {
  color: #64748b;
  font-size: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-bottom: 24px;
}
.form-group label {
  color: #475569;
  font-size: 14px;
}

.form-check {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
}

a {
  color: #1d4ed8;
  font-size: 12px;
  text-decoration: none;
}
a:hover {
  color: #1a46c2;
}

.text {
  padding: 11px 16px;
  border-radius: 6px;
  border: 1px solid #94a3b8;
  font-size: 14px;
  color: #0f172a;
  box-sizing: border-box;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: 0;
}
.text:hover {
  border: 1px solid #0f172a;
}
.text:active, .text:focus {
  border: 1px solid #1d4ed8;
}

.btn {
  border-radius: 4px;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  color: #1e293b;
}
.btn[disabled] {
  opacity: 0.4;
  cursor: auto;
}
.btn.primary {
  background-color: #1d4ed8;
  color: #f8fafc;
}
.btn.primary:active:not([disabled]) {
  background-color: #153ca5;
}
.btn.primary:hover:not([disabled]) {
  background-color: #1947c3;
}
.btn.danger {
  background-color: #ef4444;
  color: #f8fafc;
}
.btn.danger:active:not([disabled]) {
  background-color: #b63333;
}
.btn.danger:hover:not([disabled]) {
  background-color: #d83c3c;
}
.btn.dark {
  background-color: #6c757d;
  color: #f8fafc;
}
.btn.dark:active:not([disabled]) {
  background-color: #616970;
}
.btn.dark:hover:not([disabled]) {
  background-color: #676f77;
}
.btn.default {
  box-shadow: 0 0 5px 0 rgba(15, 23, 42, 0.25);
  border: solid 1px #f6f8fa;
}
.btn.default:hover:not([disabled]) {
  color: #1e293b;
}
.btn .material-symbols-outlined {
  font-size: 14px;
}
.btn.link {
  display: inline-block;
  color: #1d4ed8;
  font-size: 12px;
  padding: 0;
  background-color: transparent;
  font-weight: 400;
}
.btn.link:hover:not([disabled]) {
  color: #1a46c2;
}

.alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  font-size: 14px;
}
.alert a {
  font-size: inherit;
}
.alert strong {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.alert.danger {
  background-color: #fdecec;
}
.alert.warning {
  background-color: #fef2cd;
}
