/* --------------------------------------------------
   SAPIR 861 UI КОНТУР - СТИЛИ ДЛЯ МОБИЛЬНОГО MVP
-------------------------------------------------- */

/* 1. Глобальный фон сайта (Полная темнота и b2b-защита) */
body, .t-records {
    background-color: #0b132b !important;
    color: #f4f6f9 !important;
    font-family: Arial, sans-serif !important;
}

/* 2. Стилизация поля ввода пароля и ключа доступа */
.t-input {
    background-color: #1c2541 !important;
    color: #ffffff !important;
    border: 1px solid #3a506b !important;
    border-radius: 4px !important;
    font-size: 16px !important; /* Важно: убирает авто-зум экрана на iPhone */
    padding: 15px !important;
}

.t-input::placeholder {
    color: #5bc0be !important;
    opacity: 0.6;
}

/* 3. Кнопка расчета (Строгий, заметный акцент) */
.t-submit {
    background-color: #5bc0be !important;
    color: #0b132b !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease !important;
}

.t-submit:hover {
    background-color: #6fffe9 !important;
}

/* 4. Оформление 5 пунктов выдачи результата */
.sapir-report-block {
    background-color: #1c2541 !important;
    border-left: 4px solid #5bc0be !important;
    padding: 20px !important;
    margin-bottom: 15px !important;
    border-radius: 0 6px 6px 0 !important;
}

.sapir-report-title {
    color: #5bc0be !important;
    font-weight: bold !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
}

