/* Стили "При наведении" для кнопок. Страница "Система учета" */
.button,
.tn-form__submit {
    border-radius: 30px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.button:hover,
.tn-form__submit:hover {
   box-shadow: 0 4px 16px rgba(77, 166, 255, 0.25);
}

.button:active,
tn-form__submit:active {
    box-shadow: 0 2px 6px rgba(0, 74, 159, 0.1);
    transform: translateY(1px);
}

.button:focus,
.tn-form__submit: focus {
    box-shadow: 0 0 0 3px rgba(0, 74, 159, 0.2);
}

/* Стили "При наведении" для блоков. Страница "Система учета" */
.problem-block {
    border-radius: 15px !important;
     box-shadow: none;
    transition: all 0.3s ease;
}

.problem-block:hover {
   box-shadow: 0 4px 16px rgba(77, 166, 255, 0.25);
}