/* Darbs-5: minimāls noformējums (bez sarežģītām lietām) */
body { background: #ffffff; }
fieldset { background: #fff; }
/* Footer validators (красивое оформление) */
.validators{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e5e5e5;  /* линия-разделитель от основного футера */
  font-size: 14px;
}

.validators a{
  color: #6c757d;              /* как text-muted в Bootstrap */
  text-decoration: none;
}

.validators a:hover{
  color: #0d6efd;              /* bootstrap primary при наведении */
  text-decoration: underline;
}

.validators .sep{
  color: #c0c0c0;              /* неяркий разделитель */
}
/* Sticky footer: убирает пустое место снизу */
html, body { height: 100%; }

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* main растягиваем, чтобы футер всегда был у нижнего края */
main{
  flex: 1 0 auto;
}

/* футер не растягиваем */
footer{
  flex-shrink: 0;
}

/* Дополнительно: убрать лишние отступы, если они есть */
footer, footer .container{
  margin-bottom: 0 !important;
}
/* Уменьшаем высоту строки © ... в футере */
.footer-top{
  line-height: 1.2;
}