


        /* Карточка-контейнер */
        .card-app-root {
            max-width: 620px;

        }

        .step-header {
            background: #1e3a5f;
            color: white;
            padding: 1.2rem 2rem;
            font-weight: 600;
            font-size: 1.3rem;
            letter-spacing: -0.2px;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }



        .form-content {
            padding: 1rem 1rem 1rem 1rem;
        }

        /* стили формы */
        .field-group {
            margin-bottom: 1.8rem;
        }

        label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    color: #3d4347;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

        select, input {
            width: 100%;
            padding: 0.9rem 1rem;
            font-size: 0.9rem;
            border: 1px solid #cbd5e1;

            background: white;
            transition: 0.2s;
            outline: none;
        }

        select:focus, input:focus {
            border-color: #cbd5e1;

        }




        .actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2rem;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn-secondary {
            background: #e2e8f0;
            color: #1e3a5f;
            box-shadow: none;
        }
        .btn-secondary:hover {
            background: #cbd5e1;
            transform: none;
        }

        .save-btn {
            background: #2b7e3a;
        }
        .save-btn:hover {
            background: #1f642c;
        }

        .message {
            margin-top: 1rem;
            padding: 0.8rem;

            font-size: 0.85rem;
            background: #eef2ff;
            color: #7c4c4c;

        }


        hr {
            margin: 1rem 0;
            border-color: #e2edf2;
        }

        .step-badge {
    background: #a1a1a121;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
    color: #575757;
}

        .flex-buttons {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }