/* Для всех элементов, у которых может быть скролл */
* {
    /* Firefox */
    scrollbar-width: none;
    /* IE10+ */
    -ms-overflow-style: none;
}

/* Webkit-браузеры (Chrome, Safari, Opera) */
*::-webkit-scrollbar {
    width: 0;
    height: 0;
}

html,
body {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 16px;
}

/*! СТИЛИЗОВАННАЯ КНОПКА */

.ruby-button {
    width: 275px;
    height: 50px;
    background: linear-gradient(90deg, #4b35ff, #10069f);
    border: none;
    border-radius: 8px;
    color: #FFF;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 8px 16px rgba(16, 6, 159, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ruby-button:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(16, 6, 159, 0.3);
    opacity: 0.95;
}

.ruby-button:active {
    transform: scale(0.98);
    box-shadow: 0 6px 12px rgba(16, 6, 159, 0.15);
}

.ruby-button-big {
    width: 320px;
    height: 75px;
    font-size: 24px;
    font-weight: 400;
}




@media (max-width: 640px) {
    .ruby-button {
        font-size: 5vw;
        text-align: center;
        white-space: nowrap;
    }

    .ruby-button-big {
        width: 60%;
    }
}

/* {
    cursor: url('../img/vstu1.svg') 16 16, auto !important;
}
*/


.message-info {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Ошибка */
.message-info.error {
    border: 1px solid #e74c3c;
    background-color: #fdecea;
    color: #c0392b;
}

.message-info.error::before {
    content: "❌";
    font-size: 1.2rem;
    line-height: 1;
}

/* Успех */
.message-info.success {
    border: 1px solid rgb(67, 148, 102);
    background-color: #eafaf1;
    color: rgb(67, 148, 102);
}

.message-info.success::before {
    content: "✔️";
    font-size: 1.2rem;
    line-height: 1;
}

.message-info ul,
.errorlist {
    /* включаем маркеры */
    list-style-type: disc;
    list-style-position: inside;
    /* отступ слева для маркера */
    padding-left: 1.2em;
    /* небольшой отступ сверху/снизу */
    margin: 0.5em 0 0 0;
}

.message-info ul li,
.errorlist li {
    margin-bottom: 0.3em;
}

/* опционально: цвет маркера */
.message-info li::marker,
.errorlist li::marker {
    color: #c0392b;
}