@media (max-width: 768px) {
    .q-custom-login-form{
        .ant-col{
            min-width: 100%;
        }
    }
    
    .q-custom-descriptions{
        .ant-descriptions-item {
            display: flex;
            white-space: nowrap;
        }
        .ant-descriptions-item-container{
            width: 100%;
            display: block;
            text-align-last: justify;
        }
        .ant-descriptions-item-label {
            font-weight: bold;
            margin-right: 8px;
        }
    }
    
    .ant-dropdown {
        margin-left: -10%; /* Выпадающее меню сдвигалось за пределы окна вправо */
    }

    .q-custom-form{
        .ant-form-item-label{
            display: contents !important;
            min-width: auto !important;
            text-align: start !important;
        }
        .ant-input{
            max-width: none !important;
        }
        .ant-select{
            max-width: none !important;
        }
        .ant-btn{
            margin-left:auto !important;
            width: 100% !important;
        }
    }
}

.q-custom-form{
    .ant-form-item-label{
        display: block;
        min-width: 20%;
        text-align: end;
    }
    .ant-input{
        max-width: 50%;
    }
    .ant-select{
        max-width: 50%;
    }
    .ant-btn{
        margin-left: 20%; /* Равен ant-form-item-label min-width */
        min-width: 15%;
    }
}